Skip to content

Commit

Permalink
Bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Feb 29, 2020
1 parent d46c8d7 commit a8e9cb8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["isa", "emulation", "cpu"]
categories = ["emulators"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "1.0.0"
version = "2.0.0"
# Remember to also update in man/*.md
authors = ["nabijaczleweli <nabijaczleweli@gmail.com>"]
exclude = ["*.enc"]
Expand Down
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.0-{build}
version: 2.0.0-{build}

skip_tags: false

Expand Down Expand Up @@ -30,19 +30,19 @@ build_script:
- make
- cargo build --verbose --release
-
- mkdir pir-8-emu-v1.0.0
- cp target\release\pir-8-as.exe target\release\pir-8-disasm.exe target\release\pir-8-emu.exe pir-8-emu-v1.0.0\
- cp C:\BearLibTerminal.dll pir-8-emu-v1.0.0\
- strip --strip-all --remove-section=.comment --remove-section=.note pir-8-emu-v1.0.0/pir-8-as.exe pir-8-emu-v1.0.0/pir-8-disasm.exe pir-8-emu-v1.0.0/pir-8-emu.exe
- zip -9r pir-8-emu-v1.0.0.zip pir-8-emu-v1.0.0
- mkdir pir-8-emu-v2.0.0
- cp target\release\pir-8-as.exe target\release\pir-8-disasm.exe target\release\pir-8-emu.exe pir-8-emu-v2.0.0\
- cp C:\BearLibTerminal.dll pir-8-emu-v2.0.0\
- strip --strip-all --remove-section=.comment --remove-section=.note pir-8-emu-v2.0.0/pir-8-as.exe pir-8-emu-v2.0.0/pir-8-disasm.exe pir-8-emu-v2.0.0/pir-8-emu.exe
- zip -9r pir-8-emu-v2.0.0.zip pir-8-emu-v2.0.0

test: off
test_script:
# The tests would finish successfully but AppVeyor would report a failure
- cargo test --verbose --release || true

artifacts:
- path: pir-8-emu-v1.0.0.zip
- path: pir-8-emu-v2.0.0.zip

deploy:
provider: GitHub
Expand Down

0 comments on commit a8e9cb8

Please sign in to comment.