Skip to content

Commit 86ce501

Browse files
authored
Version 0.4 (#71)
* update `CHANGELOG.md` * update `README.md` for version 0.4 * add version 0.4
1 parent b12cc82 commit 86ce501

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
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.4
8889
- PyMilo 0.3
8990
- PyMilo 0.2
9091
- PyMilo 0.1

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.4] - 2024-01-22
11+
### Added
912
- `has_named_parameter` method in `util.py`
1013
- `CFSubcluster` Transporter(inside `CFNode` Transporter)
1114
- `CFNode` Transporter
@@ -88,7 +91,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8891
- `Export` class
8992
- `Import` class
9093

91-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.3...dev
94+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.4...dev
95+
[0.4]: https://github.com/openscilab/pymilo/compare/v0.3...v0.4
9296
[0.3]: https://github.com/openscilab/pymilo/compare/v0.2...v0.3
9397
[0.2]: https://github.com/openscilab/pymilo/compare/v0.1...v0.2
9498
[0.1]: https://github.com/openscilab/pymilo/compare/e887108...v0.1

README.md

Lines changed: 3 additions & 3 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.3`
90+
- Run `pip install pymilo==0.4`
9191
### Source code
92-
- Download [Version 0.3](https://github.com/openscilab/pymilo/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
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)
9393
- Run `pip install .`
9494

9595
## Usage
@@ -131,7 +131,7 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
131131
| Linear Models ✅ | - |
132132
| Neural networks ✅ | - |
133133
| Trees ✅ | - |
134-
| Clustering ❌ | - |
134+
| Clustering ✅ | - |
135135
| Naïve Bayes ❌ | - |
136136
| Support vector machines (SVMs) ❌ | - |
137137
| Nearest Neighbors ❌ | - |

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.3" %}
2+
{% set version = "0.4" %}
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.3"
7+
PYMILO_VERSION = "0.4"
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.3"
78+
PYMILO_VERSION = "0.4"
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.3',
37+
version='0.4',
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.3',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.4',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)