Skip to content

Commit b0dfac9

Browse files
authored
Version 1.2 (#181)
* update version in `pymilo_param.py` * update version in `meta.yaml` * update version in `version_check.py` * update version in `setup.py` * update version in `bug_report.yml` * `SECURITY.md` updated * `README.md` updated * `CHANGELOG.md` updated * update release time to wednesday * Update CHANGELOG.md
1 parent c73d2c7 commit b0dfac9

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ body:
8686
label: PyMilo version
8787
description: Which version of PyMilo are you using?
8888
options:
89+
- PyMilo 1.2
8990
- PyMilo 1.1
9091
- PyMilo 1.0
9192
- PyMilo 0.9

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
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.2] - 2025-01-22
89
### Added
910
- `generate_dockerfile` testcases
1011
- `generate_dockerfile` function in `streaming.util.py`
@@ -366,7 +367,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
366367
- `Export` class
367368
- `Import` class
368369

369-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.1...dev
370+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.2...dev
371+
[1.2]: https://github.com/openscilab/pymilo/compare/v1.1...v1.2
370372
[1.1]: https://github.com/openscilab/pymilo/compare/v1.0...v1.1
371373
[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0
372374
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9

README.md

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

6868
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
69-
- Run `pip install pymilo==1.1`
69+
- Run `pip install pymilo==1.2`
7070
### Source code
71-
- Download [Version 1.1](https://github.com/openscilab/pymilo/archive/v1.1.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
71+
- Download [Version 1.2](https://github.com/openscilab/pymilo/archive/v1.2.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
7272
- Run `pip install .`
7373

7474
### 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-
| 1.1 | :white_check_mark: |
8-
| < 1.1 | :x: |
7+
| 1.2 | :white_check_mark: |
8+
| < 1.2 | :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 = "1.1" %}
2+
{% set version = "1.2" %}
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 = "1.1"
7+
PYMILO_VERSION = "1.2"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
OVERVIEW = """
8686
PyMilo is an open source Python package that provides a simple, efficient, and safe way for users to export pre-trained machine learning models in a transparent way.
8787
"""
88-
PYMILO_VERSION = "1.1"
88+
PYMILO_VERSION = "1.2"
8989
NOT_SUPPORTED = "NOT_SUPPORTED"
9090
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
9191
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
@@ -35,14 +35,14 @@ def read_description():
3535
setup(
3636
name='pymilo',
3737
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
38-
version='1.1',
38+
version='1.2',
3939
description='PyMilo: Python for ML I/O',
4040
long_description=read_description(),
4141
long_description_content_type='text/markdown',
4242
author='PyMilo Development Team',
4343
author_email='[email protected]',
4444
url='https://github.com/openscilab/pymilo',
45-
download_url='https://github.com/openscilab/pymilo/tarball/v1.1',
45+
download_url='https://github.com/openscilab/pymilo/tarball/v1.2',
4646
keywords="machine_learning ml ai mlops model export import",
4747
project_urls={
4848
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)