Skip to content

Commit 3568de9

Browse files
committed
1.7 release
1 parent 74fc475 commit 3568de9

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

build.gradle

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ buildscript {
66
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
77
}
88
dependencies {
9-
classpath 'com.barrybecker4:bb4-gradle:1.7-SNAPSHOT'
9+
classpath 'com.barrybecker4:bb4-gradle:1.7'
1010
}
1111
}
1212

1313
description = 'A game playing framework and a collection of two-player and multi-player games. ' +
1414
'In all games, one or more intelligent computer opponents are allowed to play.'
1515
group = 'com.barrybecker4'
16-
version = '1.7-SNAPSHOT'
16+
version = '1.7'
1717
ext {
1818
archivesBaseName = 'bb4-game'
1919
mainClass = "com.barrybecker4.game.common.ui.GameApp"
@@ -23,10 +23,12 @@ ext {
2323
apply from: project.buildscript.classLoader.getResource('bb4.gradle').toURI()
2424

2525
dependencies {
26-
implementation 'com.barrybecker4:bb4-math:1.6'
27-
implementation 'com.barrybecker4:bb4-sound:1.6'
28-
implementation 'com.barrybecker4:bb4-optimization:1.6'
29-
implementation 'com.barrybecker4:bb4-A-star:1.6'
26+
implementation 'com.barrybecker4:bb4-math:1.7'
27+
implementation 'com.barrybecker4:bb4-common:1.7'
28+
implementation 'com.barrybecker4:bb4-sound:1.7'
29+
implementation 'com.barrybecker4:bb4-ui:1.7'
30+
implementation 'com.barrybecker4:bb4-optimization:1.7'
31+
implementation 'com.barrybecker4:bb4-A-star:1.7'
3032
implementation 'com.barrybecker4:bb4-sgf:1.1.3'
3133

3234
// jars needed for go

source/html/games_index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1>Games</h1>
1717
Pente, Mancala, Poker, and others.
1818
</p>
1919
<p>
20-
Download this <a href="https://github.com/bb4/bb4-games/releases/download/@version@/bb4-games-@[email protected]">zip file</a> and unzip it.
20+
Download this <a href="https://github.com/bb4/bb4-games/releases/download/@version@-release/bb4-games-@[email protected]">zip file</a> and unzip it.
2121
Then in the bin directory, <a href="../bb4-common/run-instructions.html">run</a> one of commands indicated below.
2222
</p>
2323
<p>

0 commit comments

Comments
 (0)