Skip to content

Commit

Permalink
chore: bump to version 0.16.0 and update static build script
Browse files Browse the repository at this point in the history
  • Loading branch information
JFreegman committed Nov 27, 2024
1 parent ca5aae9 commit cd94814
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 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.15.1'
version = '0.16.0'
# The full version, including alpha/beta/rc tags.
release = '0.15.1'
release = '0.16.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.15.1
TOXIC_VERSION = 0.16.0
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
ifneq (, $(findstring error, $(REV)))
VERSION = $(TOXIC_VERSION)
Expand Down
12 changes: 5 additions & 7 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="v0.2.19"
TOXCORE_VERSION="v0.2.20"

# The sha256sum of the c-toxcore tarball for TOXCORE_VERSION
TOXCORE_HASH="b770206a5ce59734279ac79f533bebcc8c8ff1d452cdd6628289a49b9200f428"
TOXCORE_HASH="5c1bc37d24a1e37fc6c03580e2602019a09393cd2e8ae1f58e338438f14d5871"

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.7.1"
CURL_HASH="6fea2aac6a4610fbd0400afb0bcddbe7258a64c63f1f68e5855ebc0c659710cd"
CURL_VERSION="8.11.0"
CURL_HASH="db59cf0d671ca6e7f5c2c5ec177084a33a79e04c97e71cf183a5cdea235054eb"
CURL_FILENAME="curl-$CURL_VERSION.tar.xz"

wget --timeout=10 -O "$CURL_FILENAME" "https://curl.haxx.se/download/$CURL_FILENAME"
Expand All @@ -197,9 +197,6 @@ tar -xf "$CURL_FILENAME"
rm "$CURL_FILENAME"
cd curl*

# TODO(nurupo): backport of https://github.com/curl/curl/commit/4b42cda3df85419328ba8c9160a3e8306605d094
# remove once that commit makes it into a curl release
sed -i 's/man_MANS = $(MANPAGE)/@BUILD_DOCS_TRUE@man_MANS = $(MANPAGE)/g' docs/cmdline-opts/Makefile.in
./configure \
--prefix="$BUILD_DIR/prefix-curl" \
--disable-shared \
Expand Down Expand Up @@ -240,6 +237,7 @@ sed -i 's/man_MANS = $(MANPAGE)/@BUILD_DOCS_TRUE@man_MANS = $(MANPAGE)/g' docs/c
--disable-websockets \
--without-ca-bundle \
--without-ca-path \
--without-libpsl \
--with-ca-fallback \
--with-nghttp2 \
--with-brotli \
Expand Down

0 comments on commit cd94814

Please sign in to comment.