Skip to content

Commit e415772

Browse files
authored
Version 0.8 (#101)
* update version in `CHANGELOG.md` * update version in `README.md` * update version in `SECURITY.md` * update version in `setup.py` * update version in `bug_report.yml` * update version in `meta.yml` * update version in `version_check.py` * update version in `pymilo_param.py`
1 parent 050c861 commit e415772

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
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.8
8889
- PyMilo 0.7
8990
- PyMilo 0.6
9091
- PyMilo 0.5

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.8] - 2024-05-06
11+
### Added
912
- `StandardScaler` Transformer in `pymilo_param.py`
1013
- `PreprocessingTransporter` Transporter
1114
- ndarray shape config in `GeneralDataStructure` Transporter
@@ -215,7 +218,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
215218
- `Export` class
216219
- `Import` class
217220

218-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.7...dev
221+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.8...dev
222+
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8
219223
[0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7
220224
[0.6]: https://github.com/openscilab/pymilo/compare/v0.5...v0.6
221225
[0.5]: https://github.com/openscilab/pymilo/compare/v0.4...v0.5

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
6464
### PyPI
6565

6666
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
67-
- Run `pip install pymilo==0.7`
67+
- Run `pip install pymilo==0.8`
6868
### Source code
69-
- Download [Version 0.7](https://github.com/openscilab/pymilo/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
69+
- Download [Version 0.8](https://github.com/openscilab/pymilo/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
7070
- Run `pip install .`
7171

7272
## Usage
@@ -114,7 +114,7 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
114114
| Nearest Neighbors ✅ | - |
115115
| Ensemble Models ✅ | - |
116116
| Pipeline Model ✅ | - |
117-
| Preprocessing Models ❌ | - |
117+
| Preprocessing Models | - |
118118

119119
Details are available in [Supported Models](https://github.com/openscilab/pymilo/blob/main/SUPPORTED_MODELS.md).
120120

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.7 | :white_check_mark: |
8-
| < 0.7 | :x: |
7+
| 0.8 | :white_check_mark: |
8+
| < 0.8 | :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.7" %}
2+
{% set version = "0.8" %}
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.7"
7+
PYMILO_VERSION = "0.8"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
pass
6969

7070

71-
PYMILO_VERSION = "0.7"
71+
PYMILO_VERSION = "0.8"
7272
NOT_SUPPORTED = "NOT_SUPPORTED"
7373
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
7474
UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differes 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.7',
37+
version='0.8',
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='[email protected]',
4343
url='https://github.com/openscilab/pymilo',
44-
download_url='https://github.com/openscilab/pymilo/tarball/v0.7',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.8',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)