Skip to content

Commit 48facd4

Browse files
authored
Bumped version to 1.0.0 (#16)
* Bumped version to 1.0.0 * Fixed typo in docstring
1 parent 2fe8e36 commit 48facd4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

firebase_admin/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Declaring module version as per https://www.python.org/dev/peps/pep-0396/#specification
1010
# Update this accordingly for each release.
11-
__version__ = '0.0.1'
11+
__version__ = '1.0.0'
1212

1313
_apps = {}
1414
_apps_lock = threading.RLock()
@@ -19,7 +19,7 @@
1919
def initialize_app(credential=None, options=None, name=_DEFAULT_APP_NAME):
2020
"""Initializes and returns a new App instance.
2121
22-
Creates a new App intance using the specified options
22+
Creates a new App instance using the specified options
2323
and the app name. If an instance already exists by the same
2424
app name a ValueError is raised. Use this function whenever
2525
a new App instance is required. Do not directly invoke the

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
install_requires=install_requires,
3737
packages=find_packages(exclude=['tests']),
3838
classifiers=[
39-
'Development Status :: 3 - Alpha',
39+
'Development Status :: 5 - Production/Stable',
4040
'Intended Audience :: Developers',
4141
'Topic :: Software Development :: Build Tools',
4242
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)