Skip to content

Commit

Permalink
Version 1.2 (#181)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
AHReccese authored Jan 21, 2025
1 parent c73d2c7 commit b0dfac9
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ body:
label: PyMilo version
description: Which version of PyMilo are you using?
options:
- PyMilo 1.2
- PyMilo 1.1
- PyMilo 1.0
- PyMilo 0.9
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.2] - 2025-01-22
### Added
- `generate_dockerfile` testcases
- `generate_dockerfile` function in `streaming.util.py`
Expand Down Expand Up @@ -366,7 +367,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `Export` class
- `Import` class

[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.1...dev
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.2...dev
[1.2]: https://github.com/openscilab/pymilo/compare/v1.1...v1.2
[1.1]: https://github.com/openscilab/pymilo/compare/v1.0...v1.1
[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
### PyPI

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

### Conda
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 1.1 | :white_check_mark: |
| < 1.1 | :x: |
| 1.2 | :white_check_mark: |
| < 1.2 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pymilo" %}
{% set version = "1.1" %}
{% set version = "1.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
PYMILO_VERSION = "1.1"
PYMILO_VERSION = "1.2"


SETUP_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion pymilo/pymilo_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
OVERVIEW = """
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.
"""
PYMILO_VERSION = "1.1"
PYMILO_VERSION = "1.2"
NOT_SUPPORTED = "NOT_SUPPORTED"
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differs from the PyMilo version used to create the JSON file."
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ def read_description():
setup(
name='pymilo',
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
version='1.1',
version='1.2',
description='PyMilo: Python for ML I/O',
long_description=read_description(),
long_description_content_type='text/markdown',
author='PyMilo Development Team',
author_email='[email protected]',
url='https://github.com/openscilab/pymilo',
download_url='https://github.com/openscilab/pymilo/tarball/v1.1',
download_url='https://github.com/openscilab/pymilo/tarball/v1.2',
keywords="machine_learning ml ai mlops model export import",
project_urls={
'Source': 'https://github.com/openscilab/pymilo',
Expand Down

0 comments on commit b0dfac9

Please sign in to comment.