Skip to content

Commit bcb3ede

Browse files
committed
bump version from 0.1.0-SNAPSHOT to 0.1.0 in pom.xml and README.md
1 parent 28175e6 commit bcb3ede

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,23 @@ try (AetherPackReader reader = AetherPackReader.openEncrypted(path, password)) {
9292
<dependency>
9393
<groupId>de.splatgames.aether.pack</groupId>
9494
<artifactId>aether-pack-core</artifactId>
95-
<version>0.1.0-SNAPSHOT</version>
95+
<version>0.1.0</version>
9696
</dependency>
9797
```
9898

9999
**Gradle (Groovy)**
100100

101101
```groovy
102102
dependencies {
103-
implementation 'de.splatgames.aether.pack:aether-pack-core:0.1.0-SNAPSHOT'
103+
implementation 'de.splatgames.aether.pack:aether-pack-core:0.1.0'
104104
}
105105
```
106106

107107
**Gradle (Kotlin)**
108108

109109
```kotlin
110110
dependencies {
111-
implementation("de.splatgames.aether.pack:aether-pack-core:0.1.0-SNAPSHOT")
111+
implementation("de.splatgames.aether.pack:aether-pack-core:0.1.0")
112112
}
113113
```
114114

aether-pack-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.splatgames.aether.pack</groupId>
99
<artifactId>aether-pack</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
</parent>
1212

1313
<artifactId>aether-pack-cli</artifactId>

aether-pack-compression/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.splatgames.aether.pack</groupId>
99
<artifactId>aether-pack</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
</parent>
1212

1313
<artifactId>aether-pack-compression</artifactId>

aether-pack-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.splatgames.aether.pack</groupId>
99
<artifactId>aether-pack</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
</parent>
1212

1313
<artifactId>aether-pack-core</artifactId>

aether-pack-crypto/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.splatgames.aether.pack</groupId>
99
<artifactId>aether-pack</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
</parent>
1212

1313
<artifactId>aether-pack-crypto</artifactId>

aether-pack-integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.splatgames.aether.pack</groupId>
99
<artifactId>aether-pack</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
</parent>
1212

1313
<artifactId>aether-pack-integration-tests</artifactId>

docs/cli/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ After building the project, the CLI is packaged as a fat JAR with all dependenci
1313
mvn clean package
1414

1515
# The CLI JAR is located at:
16-
# aether-pack-cli/target/aether-pack-cli-0.1.0-SNAPSHOT-fat.jar
16+
# aether-pack-cli/target/aether-pack-cli-0.1.0-fat.jar
1717
```
1818

1919
### Running the CLI
2020

2121
```bash
2222
# Direct execution
23-
java -jar aether-pack-cli-0.1.0-SNAPSHOT-fat.jar [command] [options]
23+
java -jar aether-pack-cli-0.1.0-fat.jar [command] [options]
2424

2525
# Create an alias for convenience (Unix/Linux/macOS)
26-
alias apack='java -jar /path/to/aether-pack-cli-0.1.0-SNAPSHOT-fat.jar'
26+
alias apack='java -jar /path/to/aether-pack-cli-0.1.0-fat.jar'
2727

2828
# Windows batch file (apack.bat)
2929
@echo off
30-
java -jar C:\path\to\aether-pack-cli-0.1.0-SNAPSHOT-fat.jar %*
30+
java -jar C:\path\to\aether-pack-cli-0.1.0-fat.jar %*
3131
```
3232

3333
---

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.splatgames.aether.pack</groupId>
88
<artifactId>aether-pack</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Aether Pack :: Parent</name>

0 commit comments

Comments
 (0)