Skip to content

Commit d36e30b

Browse files
committed
Update gradle, fix version info
1 parent 44d8cae commit d36e30b

7 files changed

Lines changed: 12 additions & 25 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Z80Processor is a an implementation of the Mostek / Zilog Z80 processor in Java
88
The code is not designed to be nice / clean / compact - however it is designed to be fast. It has been heavily profiled
99
using [Yourkit](https://www.yourkit.com/) while running 'real' applications to identify hotspots.
1010

11+
If you find this project useful, you may want to [__Buy me a Coffee!__ :coffee:](https://www.buymeacoffee.com/codesqueak) Thanks :thumbsup:
12+
1113
## Build
1214

1315
Windows
@@ -32,15 +34,15 @@ The project includes a Jenkins file to control a pipeline build. At present the
3234
<dependency>
3335
<groupId>com.codingrodent.microprocessor</groupId>
3436
<artifactId>Z80Processor</artifactId>
35-
<version>3.1.1</version>
37+
<version>3.2.0</version>
3638
</dependency>
3739
```
3840

3941
### Include Using Gradle
4042

4143
```
4244
// https://mvnrepository.com/artifact/com.codingrodent.microprocessor/Z80Processor
43-
compile group: 'com.codingrodent.microprocessor', name: 'Z80Processor', version: '2.0.2'
45+
compile group: 'com.codingrodent.microprocessor', name: 'Z80Processor', version: '3.2.0'
4446
```
4547

4648
## Undocumented instruction

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ dependencies {
185185

186186

187187
wrapper {
188-
gradleVersion = '6.7'
188+
gradleVersion = '6.7.1'
189189
distributionType = Wrapper.DistributionType.BIN
190190
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
projectName=Z80Processor
55
#
66
projectVersionMajor=3
7-
projectVersionMinor=1
8-
projectVersionBuild=2
7+
projectVersionMinor=2
8+
projectVersionBuild=0
99
#
1010
artifactory_user=admin
1111
artifactory_password=APdDpsMZH3NzE9wS8eKcyxZi44

gradle/wrapper/gradle-wrapper.jar

293 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 3 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)