Skip to content

Commit 9ffb3ea

Browse files
committed
Bump version
1 parent 4c942c4 commit 9ffb3ea

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
cd annotation-processor-test/src/test/resources/libvlc && git clone --depth 1 https://github.com/videolan/vlc.git
3535
- name: Getting linux header version for tests
3636
run: |
37-
echo "headerVersion=$(uname -r)" >> "$GITHUB_ENV"
37+
echo "linuxVersion=$(uname -r)" >> "$GITHUB_ENV" && echo "gccVersion=12" >> "$GITHUB_ENV"
3838
- name: Change wrapper permissions
3939
run: chmod +x ./gradlew
4040
- name: Build Gradle
4141
run: |
42-
./gradlew build -Dversion=$headerVersion
42+
./gradlew build -Dlinux-version=$linuxVersion -Dgcc-version=$gccVersion
4343
- name: Release to Maven
4444
env:
4545
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.ORG_GRADLE_PROJECT_MAVENCENTRALUSERNAME }}

annotation-processor-test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repositories {
99
}
1010

1111
dependencies {
12-
testImplementation 'io.github.digitalsmile.native:annotation:1.1.2'
13-
testAnnotationProcessor 'io.github.digitalsmile.native:annotation-processor:1.1.2'
12+
testImplementation 'io.github.digitalsmile.native:annotation:1.1.3'
13+
testAnnotationProcessor 'io.github.digitalsmile.native:annotation-processor:1.1.3'
1414

1515
testImplementation platform('org.junit:junit-bom:5.10.0')
1616
testImplementation 'org.junit.jupiter:junit-jupiter'

annotation-processor/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ plugins {
44
}
55

66
group = 'io.github.digitalsmile.native'
7-
version = '1.1.2'
7+
version = '1.1.3'
88

99
repositories {
1010
mavenCentral()
1111
}
1212

1313
dependencies {
1414
implementation 'io.soabase.java-composer:java-composer:1.0'
15-
implementation 'io.github.digitalsmile.native:annotation:1.1.2'
15+
implementation 'io.github.digitalsmile.native:annotation:1.1.3'
1616

1717
annotationProcessor 'io.avaje:avaje-prisms:1.28'
1818
implementation 'io.avaje:avaje-prisms:1.28'
@@ -26,7 +26,7 @@ import com.vanniktech.maven.publish.SonatypeHost
2626
mavenPublishing {
2727
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
2828
signAllPublications()
29-
coordinates("io.github.digitalsmile.native", "annotation-processor", "1.1.2")
29+
coordinates("io.github.digitalsmile.native", "annotation-processor", "1.1.3")
3030

3131
pom {
3232
name = "Native Memory Annotation processor"

annotation/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'io.github.digitalsmile.native'
7-
version = '1.1.2'
7+
version = '1.1.3'
88

99
repositories {
1010
mavenCentral()
@@ -18,7 +18,7 @@ import com.vanniktech.maven.publish.SonatypeHost
1818
mavenPublishing {
1919
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
2020
signAllPublications()
21-
coordinates("io.github.digitalsmile.native", "annotation", "1.1.2")
21+
coordinates("io.github.digitalsmile.native", "annotation", "1.1.3")
2222

2323
pom {
2424
name = "Native Memory Annotation"

0 commit comments

Comments
 (0)