Skip to content

Commit

Permalink
🔖 Bump up to version 0.2.0 -> 0.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
korawica committed Jan 14, 2024
1 parent d49cbf7 commit 8f52bf6
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[bumpversion]
current_version = 0.2.1
commit = True
tag = False
parse = ^
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<prekind>a|alpha|b|beta|d|dev|rc)(?P<pre>\d+))?(\.(?P<postkind>post)(?P<post>\d+))?
serialize =
{major}.{minor}.{patch}.{prekind}{pre}.{postkind}{post}
{major}.{minor}.{patch}.{prekind}{pre}
{major}.{minor}.{patch}.{postkind}{post}
{major}.{minor}.{patch}
message = :bookmark: Bump up to version {current_version} -> {new_version}.

[bumpversion:part:prekind]
optional_value = _
values =
_
a
b
rc

[bumpversion:part:postkind]
optional_value = _
values =
_
post

[bumpversion:file:./src/ddeutil/core/__about__.py]

[bumpversion:file:CHANGELOG.md]
search = {#}{#} Latest Changes
replace = {#}{#} Latest Changes

{#}{#} {new_version}
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@

## Latest Changes

## 0.2.1

### Features

- :dart: feat: add some decorator funcs from python blog. (_2023-10-05_)

### Code Changes

- :construction: refactored: remove parallel and example of thread. (_2024-01-14_)
- :construction: refactored: merge filtering and randomly. (_2024-01-14_)
- :construction: refactored: ⬆ bump actions/setup-python from 4 to 5 (_2024-01-01_)
- :construction: refactored: 📦 bump clishelf from 0.1.0 to 0.1.1 (_2024-01-01_)
- :construction: refactored: 📦 bump tzdata from 2023.3 to 2023.4 (_2024-01-01_)
- :construction: refactored: 📦 update ujson requirement from <6.0.0,==5.8.0 to ==5.9.0 (_2024-01-01_)
- :construction: refactored: ⬆ bump pypa/gh-action-pypi-publish from 1.8.10 to 1.8.11 (_2023-12-01_)
- :construction: refactored: ⬆ bump clishelf from 0.0.4 to 0.1.0 (_2023-11-01_)
- :art: style: add prefix on pre-commit ci hook and skip local test. (_2023-09-12_)
- :construction: refactored: [pre-commit.ci] auto fixes from pre-commit.com hooks (_2023-09-11_)
- :construction: refactored: ⬆ bump actions/checkout from 3 to 4 (_2023-09-11_)
- :construction: refactored: remove contribute file from this project. (_2023-09-09_)

### Documents

- :page_facing_up: docs: update README for list all of features. (_2024-01-14_)
- :page_facing_up: docs: remove cli from README. (_2023-09-08_)

### Fix Bugs

- :gear: fixed: change config key of clishelf. (_2024-01-14_)

### Build & Workflow

- :toolbox: build: change frequency of dependabot from weekly to monthly. (_2023-11-22_)
- :toolbox: build: update deps version on pyproject. (_2023-10-12_)
- :toolbox: build: change hook id on pre-commit config file. (_2023-09-12_)

## 0.2.0

### Code Changes
Expand Down
2 changes: 1 addition & 1 deletion src/ddeutil/core/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"

0 comments on commit 8f52bf6

Please sign in to comment.