Skip to content

Commit

Permalink
build: Bump version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielku15 committed Jun 15, 2024
1 parent dae73e2 commit 19293a4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coderline/alphatab",
"version": "1.3.0",
"version": "1.3.1",
"description": "alphaTab is a music notation and guitar tablature rendering library",
"keywords": [
"guitar",
Expand Down
4 changes: 2 additions & 2 deletions scripts/update-kotlin-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ let version = pkg.version.match(/([0-9]+\.[0-9]+\.[0-9]+)/)[0];

if(process.argv.length === 3) {
// update-kotlin-version.js SNAPSHOT
// -> version = "1.3.0-SNAPSHOT"
// -> version = "1.3.1-SNAPSHOT"
version = `${version}-${process.argv[2]}`;
} else if(process.argv.length === 2) {
// update-kotlin-version.js
// -> version = "1.3.0"
// -> version = "1.3.1"
}

console.log(`Updating Version to ${version}`);
Expand Down
4 changes: 2 additions & 2 deletions src.csharp/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<Version>1.3.0</Version>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<Version>1.3.1</Version>
<AssemblyVersion>1.3.1.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Authors>Danielku15</Authors>
<Company>CoderLine</Company>
Expand Down
2 changes: 1 addition & 1 deletion src.kotlin/alphaTab/alphaTab/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.util.Properties
// Common

group = "net.alphatab"
version = "1.3.0-SNAPSHOT"
version = "1.3.1-SNAPSHOT"
plugins {
// Common
alias(libs.plugins.kotlinMultiplatform)
Expand Down

0 comments on commit 19293a4

Please sign in to comment.