Skip to content

Commit

Permalink
bump to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
hishnash committed Feb 21, 2022
1 parent 5816e22 commit fbbdfca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2018 Matthaus Woolard
Copyright (c) 2022 LostMoa Limited

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion djangochannelsrestframework/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

sys.path.insert(0, os.path.abspath(".."))

__version__ = "0.3.0"
__version__ = "1.0.0"

# Setup Django
from django.conf import settings
Expand Down
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from setuptools import find_packages, setup
from djangochannelsrestframework import __version__

setup(
name="djangochannelsrestframework",
version="0.3.0",
url="https://github.com/hishnash/djangochannelsrestframework",
author="Matthaus Woolard",
author_email="matthaus.woolard@gmail.com",
version=__version__,
url="https://github.com/lostmoa/djangochannelsrestframework",
author="LostMoa Limited",
author_email="info@lostmoa.com",
description="RESTful API for WebSockets using django channels.",
long_description=open("README.rst").read(),
license="MIT",
Expand All @@ -22,9 +23,15 @@
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
],
)

0 comments on commit fbbdfca

Please sign in to comment.