Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

release 2.0 rc0 #265

Merged
merged 2 commits into from
Apr 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,36 @@ Current Release Team:
- Suzen Fylke - @codesue

## Past Releases

codesue marked this conversation as resolved.
Show resolved Hide resolved
### Release 2.0.0

#### Major Features and Improvements
* Reduced package dependencies and therefore removed `tfx` as a dependency.

#### Bug fixes and other changes
* Updated `Standalone_Model_Card_Toolkit_Demo.ipynb` demo.
* Updated linter setup.
* Updated `tensorflow-datasets` dependency for tests.
* Updated package release workflow.

#### Breaking changes and Deprecations
* Renamed `master` branch to `main`.
* Deprecated `ModelCardGenerator`. The component will be made available via TFX Addons.

#### Contributions By
* Alan Schiemenz
* Calvin Leung
* Gerard Casas Saez
* Hannes Hapke
* Rebecca Chen
* Sanat
* Suzen Fylke
* sklin93
* vulkomilev

Thank you!


### Release 1.3.2

#### Major Features and Improvements
Expand Down
2 changes: 1 addition & 1 deletion model_card_toolkit/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
# release branch, the current version is by default assumed to be a
# 'development' version, labeled 'dev'.
_VERSION_SUFFIX = "dev"
_VERSION_SUFFIX = "rc0"

# This produces version numbers such as, '0.1.0-dev', for example.
__version__ = ".".join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])
Expand Down