Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Feb 22, 2024
1 parent f3ee8ad commit 32e2da6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.ONESHELL:
SHELL := bash
VERSION := 0.6.0b9
VERSION := 0.6.0
CURL_VERSION := curl-8.1.1

$(CURL_VERSION):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "curl_cffi"
version = "0.6.0b9"
version = "0.6.0"
authors = [{ name = "Yifei Kong", email = "[email protected]" }]
description = "libcurl ffi bindings for Python, with impersonation support"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from cffi import FFI

__version__ = "0.6.0b9"
__version__ = "0.6.0"


def detect_arch():
Expand Down
4 changes: 2 additions & 2 deletions scripts/bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ gsed "s/^VERSION := .*/VERSION := ${VERSION}/g" -i Makefile
# pyproject.toml
gsed "s/^version = .*/version = \"${VERSION}\"/g" -i pyproject.toml

# setup.py
gsed "s/^__version__ = .*/__version__ = \"${VERSION}\"/g" -i setup.py
# build.py
gsed "s/^__version__ = .*/__version__ = \"${VERSION}\"/g" -i scripts/build.py

0 comments on commit 32e2da6

Please sign in to comment.