Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
Also update curl and toxcore in static build script
  • Loading branch information
JFreegman committed Dec 21, 2023
1 parent 710a9b6 commit 5f4d9ea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apidoc/python/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.12.0'
version = '0.13.0'
# The full version, including alpha/beta/rc tags.
release = '0.12.0'
release = '0.13.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion cfg/global_vars.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version
TOXIC_VERSION = 0.12.0
TOXIC_VERSION = 0.13.0
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
ifneq (, $(findstring error, $(REV)))
VERSION = $(TOXIC_VERSION)
Expand Down
8 changes: 4 additions & 4 deletions script/build-minimal-static-toxic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"

# The git hash of the c-toxcore version we're using
TOXCORE_VERSION="b2315c50e0838687cd328838f1475be095b358f4"
TOXCORE_VERSION="425216d9eca8b3c2afd48e52c04c6226b920303a"

# The sha256sum of the c-toxcore tarball for TOXCORE_VERSION
TOXCORE_HASH="acad3fee6cb88fc2c9b2f17e06cb788467477a7a336475c2fcc8f35e54a3248d"
TOXCORE_HASH="f1723d1e5a6ae8e99a22098f057686523b69b06fd4958c2ef8740dfd7350c2f5"

TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"

Expand Down Expand Up @@ -180,8 +180,8 @@ cmake --build _build --target install
# location with SSL_CERT_FILE env variable.
cd "$BUILD_DIR"

CURL_VERSION="7.88.1"
CURL_HASH="cdb38b72e36bc5d33d5b8810f8018ece1baa29a8f215b4495e495ded82bbf3c7"
CURL_VERSION="8.5.0"
CURL_HASH="05fc17ff25b793a437a0906e0484b82172a9f4de02be5ed447e0cab8c3475add"
CURL_FILENAME="curl-$CURL_VERSION.tar.gz"

wget --timeout=10 -O "$CURL_FILENAME" "https://curl.haxx.se/download/$CURL_FILENAME"
Expand Down

0 comments on commit 5f4d9ea

Please sign in to comment.