Skip to content

Commit a4b040b

Browse files
committed
Update all version references from 1.0.1 to 1.0.2
1 parent 986106e commit a4b040b

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/publish-gradle-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if [[ "$GITHUB_REF" == refs/tags/plugin-v* ]]; then
3636
echo "VERSION=${GITHUB_REF_NAME#plugin-v}" >> $GITHUB_OUTPUT
3737
else
38-
echo "VERSION=1.0.1" >> $GITHUB_OUTPUT
38+
echo "VERSION=1.0.2" >> $GITHUB_OUTPUT
3939
fi
4040
4141
- name: Build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the Gradle plugin to `build.gradle`:
1414

1515
```groovy
1616
plugins {
17-
id 'io.github.howtis.python-embed' version '1.0.1'
17+
id 'io.github.howtis.python-embed' version '1.0.2'
1818
}
1919
2020
pythonEmbed {

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Add the Gradle plugin:
1919

2020
```groovy
2121
plugins {
22-
id 'io.github.howtis.python-embed' version '1.0.1'
22+
id 'io.github.howtis.python-embed' version '1.0.2'
2323
}
2424
2525
pythonEmbed {
26-
packages = ['numpy', 'msgpack']
26+
packages = ['numpy']
2727
}
2828
```
2929

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Add the plugin to `build.gradle`:
66

77
```groovy
88
plugins {
9-
id 'io.github.howtis.python-embed' version '1.0.1'
9+
id 'io.github.howtis.python-embed' version '1.0.2'
1010
}
1111
1212
dependencies {
13-
implementation 'io.github.howtis:python-embed-runtime:1.0.1'
13+
implementation 'io.github.howtis:python-embed-runtime:1.0.2'
1414
}
1515
```
1616

@@ -44,7 +44,7 @@ For Spring Boot 3.x applications, add the starter:
4444

4545
```groovy
4646
dependencies {
47-
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.1'
47+
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.2'
4848
}
4949
```
5050

docs/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Add to `build.gradle`:
88

99
```groovy
1010
plugins {
11-
id 'io.github.howtis.python-embed' version '1.0.1'
11+
id 'io.github.howtis.python-embed' version '1.0.2'
1212
}
1313
1414
dependencies {
15-
implementation 'io.github.howtis:python-embed-runtime:1.0.1'
15+
implementation 'io.github.howtis:python-embed-runtime:1.0.2'
1616
}
1717
1818
pythonEmbed {
19-
packages = ['numpy', 'msgpack']
19+
packages = ['numpy']
2020
}
2121
```
2222

docs/spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add the starter dependency:
88

99
```groovy
1010
dependencies {
11-
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.1'
11+
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.2'
1212
}
1313
```
1414

python-embed-examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ subprojects {
33
apply plugin: 'application'
44

55
group = 'io.github.howtis'
6-
version = '1.0.1'
6+
version = '1.0.2'
77

88
repositories {
99
mavenCentral()

python-embed-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = 'io.github.howtis'
6-
version = project.findProperty('releaseVersion') ?: '1.0.1'
6+
version = project.findProperty('releaseVersion') ?: '1.0.2'
77

88
repositories {
99
mavenCentral()

python-embed-gradle-plugin/src/main/java/io/github/howtis/pythonembed/gradle/PythonEmbedPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* <p>Usage:
3434
* <pre>{@code
3535
* plugins {
36-
* id 'io.github.howtis.python-embed' version '1.0.1'
36+
* id 'io.github.howtis.python-embed' version '1.0.2'
3737
* }
3838
* pythonEmbed {
3939
* packages = ['numpy==1.26.4']

python-embed-spring-boot-starter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
compileJava.options.encoding = 'UTF-8'
22
compileTestJava.options.encoding = 'UTF-8'
33

4-
version = project.findProperty('releaseVersion') ?: '1.0.1'
4+
version = project.findProperty('releaseVersion') ?: '1.0.2'
55

66
dependencies {
77
implementation project(':python-embed-runtime')

0 commit comments

Comments
 (0)