Skip to content

Commit 1c8f0f7

Browse files
authored
Version 0.9 (#110)
* update pymilo version in `pymilo_param.py` * update pymilo version in `version_check.py` * update pymilo version in `meta.yaml` * update pymilo version in `bug_report.yml` * update pymilo version in `setup.py` * update pymilo version in `SECURITY.md` * update pymilo version in `README.md` * `CHANGELOG.md` updated * update pymilo version in `setup.py`
1 parent 8874907 commit 1c8f0f7

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
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 0.9
8889
- PyMilo 0.8
8990
- PyMilo 0.7
9091
- PyMilo 0.6

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88
### Added
9+
### Changed
10+
## [0.9] - 2024-07-01
11+
### Added
912
- Anaconda workflow
1013
- `prefix_list` function in `utils.util.py`
1114
- `KBinsDiscretizer` preprocessing model
@@ -248,7 +251,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
248251
- `Export` class
249252
- `Import` class
250253

251-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.8...dev
254+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.9...dev
255+
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
252256
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8
253257
[0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7
254258
[0.6]: https://github.com/openscilab/pymilo/compare/v0.5...v0.6

README.md

Lines changed: 2 additions & 2 deletions
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.8`
68+
- Run `pip install pymilo==0.9`
6969
### Source code
70-
- Download [Version 0.8](https://github.com/openscilab/pymilo/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
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)
7171
- Run `pip install .`
7272

7373
### Conda

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

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

1010
## Reporting a vulnerability
1111

otherfiles/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "pymilo" %}
2-
{% set version = "0.8" %}
2+
{% set version = "0.9" %}
33

44
package:
55
name: {{ name|lower }}

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
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.8"
7+
PYMILO_VERSION = "0.9"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
pass
8383

8484

85-
PYMILO_VERSION = "0.8"
85+
PYMILO_VERSION = "0.9"
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ def read_description():
3434
'pymilo.chains',
3535
'pymilo.transporters',
3636
'pymilo.exceptions'],
37-
version='0.8',
37+
version='0.9',
3838
description='Transportation of ML models',
3939
long_description=read_description(),
4040
long_description_content_type='text/markdown',
4141
author='PyMilo Development Team',
4242
author_email='pymilo@openscilab.com',
4343
url='https://github.com/openscilab/pymilo',
44-
download_url='https://github.com/openscilab/pymilo/tarball/v0.8',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.9',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)