diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7836b06f..ef40cd71 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -86,6 +86,7 @@ body: label: PyMilo version description: Which version of PyMilo are you using? options: + - PyMilo 1.1 - PyMilo 1.0 - PyMilo 0.9 - PyMilo 0.8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2de8fc1b..2a2b2496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. 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.1] - 2024-11-25 ### Added - `is_socket_closed` function in `streaming.communicator.py` - `validate_http_url` function in `streaming.util.py` @@ -346,7 +346,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/v1.0...dev +[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.1...dev +[1.1]: https://github.com/openscilab/pymilo/compare/v1.0...v1.1 [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 diff --git a/README.md b/README.md index cf444367..0be35ea8 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==1.0` +- Run `pip install pymilo==1.1` ### Source code -- Download [Version 1.0](https://github.com/openscilab/pymilo/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) +- Download [Version 1.1](https://github.com/openscilab/pymilo/archive/v1.1.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) - Run `pip install .` ### Conda @@ -243,7 +243,7 @@ You can also join our discord server ## Acknowledgments -[Python Software Foundation (PSF)](https://www.python.org/psf/) grants PyMilo library partially for version **1.0**. [PSF](https://www.python.org/psf/) is the organization behind Python. Their mission is to promote, protect, and advance the Python programming language and to support and facilitate the growth of a diverse and international community of Python programmers. +[Python Software Foundation (PSF)](https://www.python.org/psf/) grants PyMilo library partially for versions **1.0, 1.1**. [PSF](https://www.python.org/psf/) is the organization behind Python. Their mission is to promote, protect, and advance the Python programming language and to support and facilitate the growth of a diverse and international community of Python programmers. Python Software Foundation diff --git a/SECURITY.md b/SECURITY.md index f7440ebf..f30ab786 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 1.0 | :white_check_mark: | -| < 1.0 | :x: | +| 1.1 | :white_check_mark: | +| < 1.1 | :x: | ## Reporting a vulnerability diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 42a15758..eba70178 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pymilo" %} -{% set version = "1.0" %} +{% set version = "1.1" %} package: name: {{ name|lower }} @@ -22,6 +22,11 @@ requirements: - scikit-learn >=0.22.2 - scipy >=0.19.1 - requests>=2.0.0 + - uvicorn>=0.14.0 + - fastapi>=0.68.0 + - pydantic>=1.5.0 + - websockets>=9.0 + about: home: https://github.com/openscilab/pymilo license: MIT diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 01610503..e5ae133d 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -PYMILO_VERSION = "1.0" +PYMILO_VERSION = "1.1" SETUP_ITEMS = [ diff --git a/pymilo/pymilo_param.py b/pymilo/pymilo_param.py index 18d20eac..8e16e06e 100644 --- a/pymilo/pymilo_param.py +++ b/pymilo/pymilo_param.py @@ -83,7 +83,7 @@ pass -PYMILO_VERSION = "1.0" +PYMILO_VERSION = "1.1" 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 02ba8f25..e4dbe782 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='1.0', + version='1.1', 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/v1.0', + download_url='https://github.com/openscilab/pymilo/tarball/v1.1', keywords="python3 python machine_learning ML", project_urls={ 'Source': 'https://github.com/openscilab/pymilo',