Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/macos-x86-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
build-macos-x86:
runs-on: macos-13
runs-on: macos-15-intel
permissions:
contents: write
packages: read
Expand Down
4 changes: 2 additions & 2 deletions build-scripts/config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ OPENSSL_DOWNLOAD_URL="https://github.com/openssl/openssl/releases/download/opens
###############################################################################

# OPUS Version to download
OPUS_VERSION=1.3.1
OPUS_VERSION=1.6.1

# The URL of the Opus repository
OPUS_DOWNLOAD_URL="https://archive.mozilla.org/pub/opus/opus-$OPUS_VERSION.tar.gz"
OPUS_DOWNLOAD_URL="https://downloads.xiph.org/releases/opus/opus-$OPUS_VERSION.tar.gz"
4 changes: 2 additions & 2 deletions ios_framework/opus/opus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
###########################################################################
# Change values here #
# #
VERSION="1.3.1"
VERSION="1.6.1"
if test "x${MIN_IOS_VERSION}" = "x"; then
MIN_IOS_VERSION="14.0"
echo "$F: MIN_IOS_VERSION is not specified, using ${MIN_IOS_VERSION}"
Expand Down Expand Up @@ -56,7 +56,7 @@ set -e

if [ ! -e opus-${VERSION}.tar.gz ]; then
echo "Downloading opus-${VERSION}.tar.gz"
curl -O -L -s https://archive.mozilla.org/pub/opus/opus-${VERSION}.tar.gz
curl -O -L -s https://downloads.xiph.org/releases/opus/opus-$VERSION.tar.gz
else
echo "Using opus-${VERSION}.tar.gz"
fi
Expand Down
2 changes: 1 addition & 1 deletion pjlib/include/pj/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ PJ_BEGIN_DECL
* Extra suffix for the version (e.g. "-trunk"), or empty for
* web release version.
*/
#define PJ_VERSION_NUM_EXTRA "-22"
#define PJ_VERSION_NUM_EXTRA "-23"

/**
* PJLIB version number consists of three bytes with the following format:
Expand Down
2 changes: 1 addition & 1 deletion version.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export PJ_VERSION_MAJOR := 2
export PJ_VERSION_MINOR := 14
export PJ_VERSION_REV := 1
export PJ_VERSION_SUFFIX := -22
export PJ_VERSION_SUFFIX := -23

export PJ_VERSION := $(PJ_VERSION_MAJOR).$(PJ_VERSION_MINOR)

Expand Down
Loading