From 923d2a5541995fef5c7d840b96c22ed2d39ac0af Mon Sep 17 00:00:00 2001 From: jonathanvdc Date: Mon, 29 May 2017 20:55:31 +0200 Subject: [PATCH] Bump all the version numbers --- appveyor.yml | 4 ++-- examples/readme-example/Makefile | 2 +- libwasm-core/Makefile | 2 +- libwasm-interpret/Makefile | 2 +- libwasm/Makefile | 2 +- nullary-opcode-generator/Makefile | 2 +- unit-tests/Makefile | 2 +- wasm-cat/Makefile | 2 +- wasm-dump/Makefile | 2 +- wasm-interp/Makefile | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 1668c4b..d7fe4fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,10 @@ -version: 0.1.0.{build} +version: 0.1.1.{build} cache: - C:\Users\appveyor\AppData\Local\NuGet\Cache install: - - set VERNUM=0.1.0 + - set VERNUM=0.1.1 - echo %APPVEYOR_REPO_TAG% # Build packages as VERNUM-ci{build} - ps: if ($env:APPVEYOR_REPO_TAG -eq $True) { $env:PKG_VERSION = $env:VERNUM; } else { $env:PKG_VERSION = "$($env:VERNUM)-ci$($env:APPVEYOR_BUILD_NUMBER)"; } diff --git a/examples/readme-example/Makefile b/examples/readme-example/Makefile index b2dd5e2..d051b11 100644 --- a/examples/readme-example/Makefile +++ b/examples/readme-example/Makefile @@ -1,7 +1,7 @@ files = Program.cs \ ../../libwasm/bin/flo/libwasm.flo -common_options = -asm-name=readme-example -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=readme-example -asm-version=0.1.1.0 -Wall -Wextra all: exe flo diff --git a/libwasm-core/Makefile b/libwasm-core/Makefile index 7894e0a..035a846 100644 --- a/libwasm-core/Makefile +++ b/libwasm-core/Makefile @@ -52,7 +52,7 @@ files = \ Instructions/VarUInt32Instruction.cs \ Instructions/VarUInt32Operator.cs -common_options = -asm-name=libwasm-core -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=libwasm-core -asm-version=0.1.1.0 -Wall -Wextra all: flo diff --git a/libwasm-interpret/Makefile b/libwasm-interpret/Makefile index be4b4ac..804cb53 100644 --- a/libwasm-interpret/Makefile +++ b/libwasm-interpret/Makefile @@ -19,7 +19,7 @@ files = \ libraries = ../libwasm-core/bin/flo/libwasm-core.flo -common_options = -asm-name=libwasm-interpret -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=libwasm-interpret -asm-version=0.1.1.0 -Wall -Wextra all: flo diff --git a/libwasm/Makefile b/libwasm/Makefile index d5bb126..54fd64a 100644 --- a/libwasm/Makefile +++ b/libwasm/Makefile @@ -2,7 +2,7 @@ files = \ ../libwasm-core/bin/flo/libwasm-core.flo \ ../libwasm-interpret/bin/flo/libwasm-interpret.flo -common_options = -asm-name=libwasm -asm-version=0.1.0.0 +common_options = -asm-name=libwasm -asm-version=0.1.1.0 all: dll flo diff --git a/nullary-opcode-generator/Makefile b/nullary-opcode-generator/Makefile index 5c985d2..b7b8b22 100644 --- a/nullary-opcode-generator/Makefile +++ b/nullary-opcode-generator/Makefile @@ -1,7 +1,7 @@ files = Program.cs \ ../libwasm/bin/flo/libwasm.flo -common_options = -asm-name=nullary-opcode-generator -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=nullary-opcode-generator -asm-version=0.1.1.0 -Wall -Wextra all: exe flo diff --git a/unit-tests/Makefile b/unit-tests/Makefile index 1c7af41..c161563 100644 --- a/unit-tests/Makefile +++ b/unit-tests/Makefile @@ -8,7 +8,7 @@ libraries = \ ../packages/Loyc.Collections.24.3.0/lib/net45/Loyc.Collections.dll \ ../packages/Loyc.Syntax.24.3.0/lib/net45/Loyc.Syntax.dll -common_options = -asm-name=unit-tests -asm-version=0.1.0.0 -Wall -Wextra -fno-whole-program +common_options = -asm-name=unit-tests -asm-version=0.1.1.0 -Wall -Wextra -fno-whole-program all: exe flo diff --git a/wasm-cat/Makefile b/wasm-cat/Makefile index 64b34a0..79d9bc5 100644 --- a/wasm-cat/Makefile +++ b/wasm-cat/Makefile @@ -1,7 +1,7 @@ files = Program.cs \ ../libwasm/bin/flo/libwasm.flo -common_options = -asm-name=wasm-cat -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=wasm-cat -asm-version=0.1.1.0 -Wall -Wextra all: exe flo diff --git a/wasm-dump/Makefile b/wasm-dump/Makefile index 8f7c121..6b15e6e 100644 --- a/wasm-dump/Makefile +++ b/wasm-dump/Makefile @@ -1,7 +1,7 @@ files = Program.cs \ ../libwasm/bin/flo/libwasm.flo -common_options = -asm-name=wasm-dump -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=wasm-dump -asm-version=0.1.1.0 -Wall -Wextra all: exe flo diff --git a/wasm-interp/Makefile b/wasm-interp/Makefile index f832a09..e7a4963 100644 --- a/wasm-interp/Makefile +++ b/wasm-interp/Makefile @@ -1,7 +1,7 @@ files = Program.cs \ ../libwasm/bin/flo/libwasm.flo -common_options = -asm-name=wasm-interp -asm-version=0.1.0.0 -Wall -Wextra +common_options = -asm-name=wasm-interp -asm-version=0.1.1.0 -Wall -Wextra all: exe flo