diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 21353044..d104a750 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: PyMilo version description: Which version of PyMilo are you using? options: + - PyMilo 1.0 - PyMilo 0.9 - PyMilo 0.8 - PyMilo 0.7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2664287e..880bfe4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.0] - 2024-09-16 ### Added - Compression method test in `ML Streaming` RESTful testcases - `CLI` handler in `tests/test_ml_streaming/run_server.py` @@ -314,7 +315,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `Export` class - `Import` class -[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.9...dev +[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.0...dev +[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0 [0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9 [0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8 [0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7 diff --git a/README.md b/README.md index 14471f50..85b47cec 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install pymilo==0.9` +- Run `pip install pymilo==1.0` ### Source code -- Download [Version 0.9](https://github.com/openscilab/pymilo/archive/v0.9.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) +- Download [Version 1.0](https://github.com/openscilab/pymilo/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) - Run `pip install .` ### Conda diff --git a/SECURITY.md b/SECURITY.md index 66a285d0..f7440ebf 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.9 | :white_check_mark: | -| < 0.9 | :x: | +| 1.0 | :white_check_mark: | +| < 1.0 | :x: | ## Reporting a vulnerability diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index c4af5a73..42a15758 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pymilo" %} -{% set version = "0.9" %} +{% set version = "1.0" %} package: name: {{ name|lower }} @@ -21,6 +21,7 @@ requirements: - numpy >=1.9.0 - scikit-learn >=0.22.2 - scipy >=0.19.1 + - requests>=2.0.0 about: home: https://github.com/openscilab/pymilo license: MIT diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index db8857d0..01610503 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -PYMILO_VERSION = "0.9" +PYMILO_VERSION = "1.0" SETUP_ITEMS = [ diff --git a/pymilo/pymilo_param.py b/pymilo/pymilo_param.py index c3652ee8..f70ae6de 100644 --- a/pymilo/pymilo_param.py +++ b/pymilo/pymilo_param.py @@ -82,7 +82,7 @@ pass -PYMILO_VERSION = "0.9" +PYMILO_VERSION = "1.0" NOT_SUPPORTED = "NOT_SUPPORTED" PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file." UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differs from the PyMilo version used to create the JSON file." diff --git a/setup.py b/setup.py index 735896f7..2087d6bb 100644 --- a/setup.py +++ b/setup.py @@ -35,14 +35,14 @@ def read_description(): setup( name='pymilo', packages=find_packages(include=['pymilo*'], exclude=['tests*']), - version='0.9', + version='1.0', description='Transportation of ML models', long_description=read_description(), long_description_content_type='text/markdown', author='PyMilo Development Team', author_email='pymilo@openscilab.com', url='https://github.com/openscilab/pymilo', - download_url='https://github.com/openscilab/pymilo/tarball/v0.9', + download_url='https://github.com/openscilab/pymilo/tarball/v1.0', keywords="python3 python machine_learning ML", project_urls={ 'Source': 'https://github.com/openscilab/pymilo',