Skip to content

Commit c439aea

Browse files
committed
Bump version: 0.4.0 → 0.5.0
1 parent 935befa commit c439aea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required (VERSION 3.15)
22

3-
project(pylibmagic VERSION 0.4.0 DESCRIPTION "Library for compiling libmagic using CMake.")
3+
project(pylibmagic VERSION 0.5.0 DESCRIPTION "Library for compiling libmagic using CMake.")
44

55
set(CMAKE_CXX_STANDARD 11)
66
set(CMAKE_MACOSX_RPATH 1)

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pylibmagic v0.4.0
1+
pylibmagic v0.5.0
22
=================
33

44
A lightweight, minimal python package that ships ``magic`` libraries
@@ -70,9 +70,9 @@ To release, due to concurrency issues, we need to push the tag after Cirrus CI f
7070

7171
.. code:: bash
7272
73-
tbump 0.4.0 --no-tag-push
73+
tbump 0.5.0 --no-tag-push
7474
# wait until Cirrus CI finishes
75-
git push origin v0.4.0
75+
git push origin v0.5.0
7676
# wait until Cirrus CI finishes
7777
gh release create
7878

tbump.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/kratsg/pylibmagic/"
22

33
[version]
4-
current = "0.4.0"
4+
current = "0.5.0"
55

66
# Example of a semver regexp.
77
# Make sure this matches current_version before
@@ -19,7 +19,7 @@ regex = '''
1919

2020
[git]
2121
# The current version will get updated when tbump is run
22-
message_template = "Bump version: 0.4.0 → {new_version}"
22+
message_template = "Bump version: 0.5.0 → {new_version}"
2323
tag_template = "v{new_version}"
2424

2525
# For each file to patch, add a [[file]] config

0 commit comments

Comments
 (0)