summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-05-14 20:03:44 -0400
committerB. Stack <bgstack15@gmail.com>2023-05-14 20:03:44 -0400
commitf5d6c2abb691d99f4cc8bb5f54445c248a1774b3 (patch)
tree817669ba54f89db5c09065a972c040cc5c8a1cad
parentre-add missing version string (diff)
downloadlibrewolf-debian-f5d6c2abb691d99f4cc8bb5f54445c248a1774b3.tar.gz
librewolf-debian-f5d6c2abb691d99f4cc8bb5f54445c248a1774b3.tar.bz2
librewolf-debian-f5d6c2abb691d99f4cc8bb5f54445c248a1774b3.zip
version 113.0 rc1
-rw-r--r--scripts/prep-librewolf-dpkg.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index 2710d29..69cfa21 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -4,11 +4,11 @@
# Available options for DISTRO: debian
DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
-distro_firefox_version=${distro_firefox_version:-'112.0.1-1'}
+distro_firefox_version=${distro_firefox_version:-'113.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'112.0.1'}
+firefox_version=${firefox_version:-'113.0'}
# input git tag of source repo
-source_version=${source_version:-'112.0.1-2'}
+source_version=${source_version:-'113.0-3'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15