Skip to content

Commit

Permalink
Bump version to 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Jul 23, 2022
1 parent 651a234 commit 0b58c8d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deb-build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

REL_VER=$(grep "^export VERSION" deb-get | cut -d'"' -f2)
REL_VER=$(grep "^readonly VERSION" deb-get | cut -d'"' -f2)
dch -v "${REL_VER}-1" --distribution=unstable "New upstream release."
dpkg-buildpackage --build=binary --no-check-builddeps --compression=gzip
5 changes: 2 additions & 3 deletions deb-get
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env bash
LC_ALL=C

readonly VERSION="0.3.3"

function usage() {
cat <<HELP
Expand Down Expand Up @@ -2445,7 +2447,6 @@ done

# Now create the final array of all loaded / merged deb_ functions
readonly APPS=($(declare -F | grep deb_ | sed 's|declare -f deb_||g' | sort))

export CACHE_DIR="/var/cache/deb-get"

function create_cache_dir() {
Expand All @@ -2456,8 +2457,6 @@ function create_cache_dir() {
${ELEVATE} chmod 755 "${CACHE_DIR}" 2>/dev/null
}

export VERSION="0.3.2"

if ((BASH_VERSINFO[0] < 4)); then
fancy_message fatal "Sorry, you need bash 4.0 or newer to run $(basename ${0})."
fi
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deb-get (0.3.3-1) unstable; urgency=medium

* New upstream release.

-- Martin Wimpress <[email protected]> Sat, 23 Jul 2022 11:35:17 +0100

deb-get (0.3.2-1) unstable; urgency=medium

* New upstream release.
Expand Down

0 comments on commit 0b58c8d

Please sign in to comment.