Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to v0.16.1 and update static build #396

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.16.0'
version = '0.16.1'
# The full version, including alpha/beta/rc tags.
release = '0.16.0'
release = '0.16.1'

# 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.16.0
TOXIC_VERSION = 0.16.1
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 @@ -143,10 +143,10 @@ mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"

# The git hash of the c-toxcore version we're using
TOXCORE_VERSION="ac812871a2ec42c37dd7f73bf0f7a6734dfc0bf2"
TOXCORE_VERSION="0f12f384c8cf62310b9cff6c31e94af7126b7478"

# The sha256sum of the c-toxcore tarball for TOXCORE_VERSION
TOXCORE_HASH="6ae79cb3020032297428846065579a843094a833a6eeb266620c9eed8e3bdedf"
TOXCORE_HASH="18181e2baef5896d217505b360775e84a30d1f8adf48188c87b76a16ccd634ee"

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

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

CURL_VERSION="8.11.0"
CURL_HASH="db59cf0d671ca6e7f5c2c5ec177084a33a79e04c97e71cf183a5cdea235054eb"
CURL_VERSION="8.11.1"
CURL_HASH="c7ca7db48b0909743eaef34250da02c19bc61d4f1dcedd6603f109409536ab56"
CURL_FILENAME="curl-$CURL_VERSION.tar.xz"

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