Skip to content

Commit

Permalink
chore: bump version to 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Aug 8, 2018
1 parent d4b3d0f commit 81a1beb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion maintenance_scripts/show_recent_history.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

filter=cat
if [[ "${1:-}" = '-c' ]] ; then
filter="grep -v -i -E -e (typing|typehint|coverage|travis|docker) -e actionless.*(chore|test|style|doc|Revert|Merge)"
filter="grep -v -i -E -e (typing|typehint|coverage|travis|docker) -e actionless.*(chore|test|style|doc|Revert|Merge|readme)"
shift
fi

Expand Down
6 changes: 3 additions & 3 deletions maintenance_scripts/tag_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [[ $(git status --porcelain 2>/dev/null| grep -c "^ [MD]") -gt 0 ]] ; then
answer=
fi

./maintenance_scripts/show_recent_history.sh -c
./maintenance_scripts/show_recent_history.sh -c || true


echo
Expand All @@ -50,7 +50,7 @@ echo -n "> "
read -r answer
echo
if [[ "${answer}" = "y" ]] ; then
git commit -am "chore: bump version to ${new_version}"
git commit -am "chore: bump version to ${new_version}" || true
git tag -a "${new_version}"
git push origin HEAD
git push origin "${new_version}"
Expand All @@ -65,7 +65,7 @@ echo "** Updating AUR dev PKBUILD... **"
echo "***************************************"
echo
./maintenance_scripts/changelog.sh > "${aur_dev_repo_dir}"/CHANGELOG
cp PKGBUILD "${aur_dev_repo_dir}"/PKGBUILD
cp ./packaging/arch/PKGBUILD "${aur_dev_repo_dir}"/PKGBUILD
cd "${aur_dev_repo_dir}"
makepkg --printsrcinfo > .SRCINFO

Expand Down
4 changes: 2 additions & 2 deletions packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Upstream URL: https://github.com/themix-project/oomox

pkgname=oomox-git
pkgver=1.6.2.1
pkgrel=2
pkgver=1.7
pkgrel=1
pkgdesc="Graphical application for generating different color variations
of Oomox(Numix-based), Materia (ex-Flat-Plat) and Arc themes
(GTK2, GTK3, Cinnamon, GNOME, Openbox, Xfwm),
Expand Down
2 changes: 1 addition & 1 deletion packaging/flatpak/com.github.themix_project.Oomox.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
{
"type": "git",
"url": "https://github.com/themix-project/oomox.git",
"tag": "1.6.2.1"
"tag": "1.7"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion packaging/ubuntu/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: oomox
Version: 1.6.2.1-1~themixproject~zesty
Version: 1.7-1~themixproject~zesty
Architecture: all
Maintainer: Yauheni Kirylau <[email protected]>
Depends: python3-gi, libglib2.0-bin, libgdk-pixbuf2.0-dev, libxml2-utils, x11-xserver-utils, gir1.2-gtk-3.0, gir1.2-glib-2.0, gir1.2-pango-1.0, gir1.2-gdkpixbuf-2.0, gtk2-engines, gtk2-engines-murrine, gtk2-engines-pixbuf, bash, bc, sed, grep, parallel, sassc (>=3.4), libsass0 (>=3.4), imagemagick, optipng, librsvg2-bin, inkscape, python3-pillow
Expand Down

0 comments on commit 81a1beb

Please sign in to comment.