Skip to content

Commit c2a62e7

Browse files
committed
Update versioning
1 parent 58e238b commit c2a62e7

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

CHANGES.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
99
- ![Documentation](https://img.shields.io/badge/-Documentation-blue?style=flat-square) : An update to the documentation.
1010
- ![Other](https://img.shields.io/badge/-Other-lightgrey?style=flat-square) : Miscellaneous updates such as package structure or GitHub quality of life updates.
1111

12-
### Version 1.0.0
13-
The following are changes to be implemented in the `1.0.0` release.
12+
### Version 0.9.0
1413

1514
- ![Feature](https://img.shields.io/badge/-Feature-blueviolet?style=flat-square) :
1615
[`NNRF`](https://github.com/paradoxysm/nnrf/blob/master/nnrf/_nnrf.py) and [`NNDT`](https://github.com/paradoxysm/nnrf/blob/master/nnrf/_nndt.py) implemented!
1716
- ![Feature](https://img.shields.io/badge/-Feature-blueviolet?style=flat-square) : [`NeuralNetwork`](https://github.com/paradoxysm/nnrf/blob/master/nnrf/_nn.py) and [`DESKNN`](https://github.com/paradoxysm/nnrf/blob/master/nnrf/_des_knn.py) implemented.
18-
- ![Documentation](https://img.shields.io/badge/-Documentation-blue?style=flat-square) : Basic documentation for `nnrf` created.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ def read(*paths):
1010

1111
setup(
1212
name='nnrf',
13-
version='1.0.0',
13+
version='0.9.0',
1414
description='Neural Network with Random Forest Structure',
1515
long_description=(read('README.md') + '\n\n'),
1616
long_description_content_type="text/markdown",
1717
url='http://github.com/paradoxysm/nnrf',
18-
download_url = 'https://github.com/paradoxysm/nnrf/archive/1.0.0.tar.gz',
18+
download_url = 'https://github.com/paradoxysm/nnrf/archive/0.9.0.tar.gz',
1919
author='paradoxysm',
2020
author_email='[email protected]',
2121
license='BSD-3-Clause',
@@ -27,7 +27,7 @@ def read(*paths):
2727
],
2828
python_requires='>=3.4, <4',
2929
classifiers=[
30-
'Development Status :: 3 - Alpha',
30+
'Development Status :: 4 - Beta',
3131
'Intended Audience :: Developers',
3232
'Natural Language :: English',
3333
'License :: OSI Approved :: BSD License',

0 commit comments

Comments
 (0)