Skip to content

Commit

Permalink
bump: version 0.1.3 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 8, 2024
1 parent ffb64ea commit e8f66d1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## 0.2.0 (2024-09-08)

### Feat

- litgpt update (#95)

### Fix

- adding cz config (#119)
- removing version parsing in whittle/__init__.py (#118)
- renaming whittle/version to whittle/__version__.py (#117)
- commitizen configuration (#115)
- remove deprecated module (#105)
- delete old code (#104)
- allow to pass other loss function to training strategies (#101)
- set random state properly in sampler (#103)
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "whittle"
version = "0.1.3"
version = "0.2.0"
description = "Two-stage neural architecture search for large language models"
authors = [{name = "Aaron Klein"},
{name = "Arber Zela"},
Expand Down Expand Up @@ -77,7 +77,7 @@ build-backend = "setuptools.build_meta"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.3"
version = "0.2.0"
update_changelog_on_bump = true
version_files = ["pyproject.toml:version", "whittle/__version__.py"]
changelog_start_rev = "0.1.3"
Expand Down
2 changes: 1 addition & 1 deletion whittle/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "0.1.3"
__version__ = "0.2.0"

0 comments on commit e8f66d1

Please sign in to comment.