Skip to content

Commit 2489054

Browse files
authored
Version 1.0 (#133)
* apply release instructions to `CHANGELOG.md` * apply release instructions to `README.md` * apply release instructions to `SECURITY.md` * apply release instructions to `setup.py` * apply release instructions to `bug_report.yml` * apply release instructions to `meta.yml` * apply release instructions to `version_check.py` * apply release instructions to `pymilo_param.py`
1 parent 318f815 commit 2489054

File tree

8 files changed

+14
-10
lines changed

8 files changed

+14
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
label: PyMilo version
8686
description: Which version of PyMilo are you using?
8787
options:
88+
- PyMilo 1.0
8889
- PyMilo 0.9
8990
- PyMilo 0.8
9091
- PyMilo 0.7

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [1.0] - 2024-09-16
89
### Added
910
- Compression method test in `ML Streaming` RESTful testcases
1011
- `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.
314315
- `Export` class
315316
- `Import` class
316317

317-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.9...dev
318+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.0...dev
319+
[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0
318320
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
319321
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8
320322
[0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
6565
### PyPI
6666

6767
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
68-
- Run `pip install pymilo==0.9`
68+
- Run `pip install pymilo==1.0`
6969
### Source code
70-
- Download [Version 0.9](https://github.com/openscilab/pymilo/archive/v0.9.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
70+
- Download [Version 1.0](https://github.com/openscilab/pymilo/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
7171
- Run `pip install .`
7272

7373
### Conda

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 0.9 | :white_check_mark: |
8-
| < 0.9 | :x: |
7+
| 1.0 | :white_check_mark: |
8+
| < 1.0 | :x: |
99

1010
## Reporting a vulnerability
1111

otherfiles/meta.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "pymilo" %}
2-
{% set version = "0.9" %}
2+
{% set version = "1.0" %}
33

44
package:
55
name: {{ name|lower }}
@@ -21,6 +21,7 @@ requirements:
2121
- numpy >=1.9.0
2222
- scikit-learn >=0.22.2
2323
- scipy >=0.19.1
24+
- requests>=2.0.0
2425
about:
2526
home: https://github.com/openscilab/pymilo
2627
license: MIT

otherfiles/version_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
PYMILO_VERSION = "0.9"
7+
PYMILO_VERSION = "1.0"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
pass
8383

8484

85-
PYMILO_VERSION = "0.9"
85+
PYMILO_VERSION = "1.0"
8686
NOT_SUPPORTED = "NOT_SUPPORTED"
8787
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
8888
UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differs from the PyMilo version used to create the JSON file."

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def read_description():
3535
setup(
3636
name='pymilo',
3737
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
38-
version='0.9',
38+
version='1.0',
3939
description='Transportation of ML models',
4040
long_description=read_description(),
4141
long_description_content_type='text/markdown',
4242
author='PyMilo Development Team',
4343
author_email='pymilo@openscilab.com',
4444
url='https://github.com/openscilab/pymilo',
45-
download_url='https://github.com/openscilab/pymilo/tarball/v0.9',
45+
download_url='https://github.com/openscilab/pymilo/tarball/v1.0',
4646
keywords="python3 python machine_learning ML",
4747
project_urls={
4848
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)