Skip to content
This repository was archived by the owner on Jul 1, 2018. It is now read-only.

Commit cdc36e8

Browse files
committed
Bump version
Also test against 1.80pr1build3, because why not?
1 parent a1952ce commit cdc36e8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'idea'
66
apply plugin: 'maven-publish'
77

88
group 'org.squiddev'
9-
version '1.5.0-pr3'
9+
version '1.5.0-pr4'
1010

1111
targetCompatibility = sourceCompatibility = 1.6
1212
compileTestJava.sourceCompatibility = compileTestJava.targetCompatibility = 1.8
@@ -37,7 +37,7 @@ configurations {
3737
dependencies {
3838
provided "com.google.code.findbugs:jsr305:3.0.2"
3939

40-
provided "dan200.computercraft:ComputerCraft:1.80pr1-build0"
40+
provided "dan200.computercraft:ComputerCraft:1.80pr1-build3"
4141
compile 'com.google.guava:guava:19.0'
4242
shade "org.ow2.asm:asm-debug-all:5.0.4"
4343

@@ -65,6 +65,7 @@ idea { module { scopes.PROVIDED.plus += [configurations.provided] } }
6565
def versions = [
6666
('1.80pr0-build12'): 'http://cc.crzd.me/maven/dan200/computercraft/ComputerCraft/1.80pr0-build12/ComputerCraft-1.80pr0-build12.jar',
6767
('1.80pr1-build0'): 'http://cc.crzd.me/maven/dan200/computercraft/ComputerCraft/1.80pr1-build0/ComputerCraft-1.80pr1-build0.jar',
68+
('1.80pr1-build3'): 'http://cc.crzd.me/maven/dan200/computercraft/ComputerCraft/1.80pr1-build3/ComputerCraft-1.80pr1-build3.jar',
6869
]
6970

7071
task getVersions(type: Task) {

src/test/java/org/squiddev/cctweaks/lua/patcher/VersionHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public static List<Object[]> getVersions() {
2020
return Arrays.asList(new Object[][]{
2121
new Object[]{"1.80pr0-build12"},
2222
new Object[]{"1.80pr1-build0"},
23+
new Object[]{"1.80pr1-build3"},
2324
});
2425
}
2526

0 commit comments

Comments
 (0)