Skip to content

Commit 85ed309

Browse files
authored
Version 0.5 (#78)
* setup.py updated * setup.py `download_url` updated * `README.md` updated * `version_check.py` updated * `meta.yaml` updated * `pymilo_param.py` updated * `CHANGELOG.md` updated * `bug_report.yml` updated
1 parent 4ed02e3 commit 85ed309

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
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.5
8889
- PyMilo 0.4
8990
- PyMilo 0.3
9091
- PyMilo 0.2

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.5] - 2024-01-31
11+
### Added
912
- `reset` function in the `Transport` interface
1013
- `reset` function implementation in `AbstractTransporter`
1114
- `Gaussian Naive Bayes` declared as `GaussianNB` model
@@ -109,7 +112,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
109112
- `Export` class
110113
- `Import` class
111114

112-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.4...dev
115+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.5...dev
116+
[0.5]: https://github.com/openscilab/pymilo/compare/v0.4...v0.5
113117
[0.4]: https://github.com/openscilab/pymilo/compare/v0.3...v0.4
114118
[0.3]: https://github.com/openscilab/pymilo/compare/v0.2...v0.3
115119
[0.2]: https://github.com/openscilab/pymilo/compare/v0.1...v0.2

README.md

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

8989
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
90-
- Run `pip install pymilo==0.4`
90+
- Run `pip install pymilo==0.5`
9191
### Source code
92-
- Download [Version 0.4](https://github.com/openscilab/pymilo/archive/v0.4.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
92+
- Download [Version 0.5](https://github.com/openscilab/pymilo/archive/v0.5.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
9393
- Run `pip install .`
9494

9595
## Usage

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.4" %}
2+
{% set version = "0.5" %}
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.4"
7+
PYMILO_VERSION = "0.5"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
except BaseException:
7676
pass
7777

78-
PYMILO_VERSION = "0.4"
78+
PYMILO_VERSION = "0.5"
7979
NOT_SUPPORTED = "NOT_SUPPORTED"
8080

8181

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.4',
37+
version='0.5',
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.4',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.5',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)