Skip to content

Commit 148ce71

Browse files
authored
Merge pull request #84 from Project516/release
Merge release into master
2 parents 12b88d5 + c8db33a commit 148ce71

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/src/main/java/io/github/project516/NumberGuessingGame/ReadVersionFile.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ public class ReadVersionFile {
1313
/**
1414
* Retrieves the current version of the game by reading from the version.txt resource file.
1515
*
16-
* @return the version string, or "rolling" if the file cannot be read
16+
* @return the version string
1717
*/
1818
public String readVersion() {
19-
String content = "rolling"; // Placeholder version
19+
String content = "0.1.0"; // Placeholder version
2020
try (InputStream inputStream =
2121
getClass().getClassLoader().getResourceAsStream("version.txt");
2222
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) {

app/src/main/resources/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rolling
1+
0.1.2

debian-package/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: numberguessinggame
2-
Version: 1.0.0
2+
Version: 0.1.2
33
Section: games
44
Priority: optional
55
Architecture: all

0 commit comments

Comments
 (0)