Skip to content

Commit e4d2865

Browse files
author
Corneliu Tusnea
committed
prepare for publishing
1 parent 4ed5902 commit e4d2865

File tree

20 files changed

+603
-144
lines changed

20 files changed

+603
-144
lines changed

.github/PUBLISHING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Configure the following secrets in your GitHub repository (Settings → Secrets
6868
**Manual Trigger:**
6969
```bash
7070
# Go to Actions → Publish to Maven Central → Run workflow
71-
# Specify the version (e.g., 2.4.20)
71+
# Specify the version (e.g., 1.1.2)
7272
```
7373

7474
### 3. Performance Benchmarks (`benchmark.yml`)
@@ -87,8 +87,8 @@ Configure the following secrets in your GitHub repository (Settings → Secrets
8787

8888
1. **Create a Git tag:**
8989
```bash
90-
git tag -a v2.4.20 -m "Release version 2.4.20"
91-
git push origin v2.4.20
90+
git tag -a v1.1.0 -m "Release version 1.1.0"
91+
git push origin v1.1.0
9292
```
9393

9494
2. **Create a GitHub Release:**
@@ -105,7 +105,7 @@ Configure the following secrets in your GitHub repository (Settings → Secrets
105105

106106
1. **Update version in `build.gradle.kts`:**
107107
```kotlin
108-
version = "2.4.20" // Remove -SNAPSHOT for releases
108+
version = "1.1.0" // Remove -SNAPSHOT for releases
109109
```
110110

111111
2. **Trigger workflow manually:**
@@ -118,12 +118,12 @@ Configure the following secrets in your GitHub repository (Settings → Secrets
118118

119119
The project uses semantic versioning: `MAJOR.MINOR.PATCH`
120120

121-
- **SNAPSHOT versions** (e.g., `2.4.20-SNAPSHOT`):
121+
- **SNAPSHOT versions** (e.g., `1.1.0-SNAPSHOT`):
122122
- Published to Sonatype Snapshots repository
123123
- Used for development builds
124124
- Automatically overwritten with each publish
125125

126-
- **Release versions** (e.g., `2.4.20`):
126+
- **Release versions** (e.g., `1.1.0`):
127127
- Published to Maven Central Staging
128128
- Requires manual promotion in Sonatype OSSRH
129129
- Immutable once published
@@ -186,14 +186,14 @@ Once published to Maven Central, users can add the dependency:
186186
### Gradle (Kotlin DSL)
187187
```kotlin
188188
dependencies {
189-
implementation("com.intuit.isl:isl-transform:2.4.20")
189+
implementation("com.intuit.isl:isl-transform:1.1.0")
190190
}
191191
```
192192

193193
### Gradle (Groovy)
194194
```groovy
195195
dependencies {
196-
implementation 'com.intuit.isl:isl-transform:2.4.20'
196+
implementation 'com.intuit.isl:isl-transform:1.1.0'
197197
}
198198
```
199199

@@ -202,7 +202,7 @@ dependencies {
202202
<dependency>
203203
<groupId>com.intuit.isl</groupId>
204204
<artifactId>isl-transform</artifactId>
205-
<version>2.4.20</version>
205+
<version>1.1.0</version>
206206
</dependency>
207207
```
208208

0 commit comments

Comments
 (0)