Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed May 15, 2019
1 parent ee38de2 commit 8baf21c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ script-anchors:
- make -j4 CONFIG=Release
- ls -la
- ls -la build
- zip -r modEQ-$(git describe --abbrev=0)-linux.zip build/modEQ build/modEQ.a
- zip -r modEQ-$(git describe --tags --abbrev=0)-linux.zip build/modEQ build/modEQ.a

- &script-macOS
- gem install xcpretty
Expand Down Expand Up @@ -73,7 +73,7 @@ script-anchors:
- xcodebuild -project modEQ.xcodeproj/ clean
- xcodebuild -project modEQ.xcodeproj/ ARCHS="x86_64" ONLY_ACTIVE_ARCH=NO -configuration Release | xcpretty -f `xcpretty-travis-formatter`
- ls -la build/Release
- zip -r modEQ-$(git describe --abbrev=0)-macOS.zip build/Release -x build/Release/libmodEQ.a
- zip -r modEQ-$(git describe --tags --abbrev=0)-macOS.zip build/Release -x build/Release/libmodEQ.a


matrix:
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project setup
PROJECT_NAME = modEQ
PROJECT_NUMBER = 0.3.0
PROJECT_NUMBER = 0.3.1

# Main page and input dirs
USE_MDFILE_AS_MAINPAGE = README.md
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# GENERAL
version: 0.3.0.{build}
version: 0.3.1.{build}
branches:
only:
- master
Expand Down
2 changes: 1 addition & 1 deletion modEQ.jucer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="jWny5A" name="modEQ" projectType="audioplug" jucerVersion="5.4.3"
version="0.3.0" companyName="tobanteAudio" companyWebsite="https://github.com/tobanteAudio"
version="0.3.1" companyName="tobanteAudio" companyWebsite="https://github.com/tobanteAudio"
companyEmail="[email protected]" bundleIdentifier="com.tobanteAudio.modEQ"
pluginName="modEQ" pluginDesc="EQ with modulation" pluginManufacturer="tobanteAudio"
pluginManufacturerCode="toAu" pluginCode="tamq" pluginAUExportPrefix="modEQAU"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
ROOT_DIR="$SCRIPT_DIR/.."
CURRENT_VERSION=$(git describe --abbrev=0 | sed 's/v//g')
CURRENT_VERSION=$(git describe --tags --abbrev=0 | sed 's/v//g')
NEW_VERSION="$1"


Expand Down

0 comments on commit 8baf21c

Please sign in to comment.