Skip to content

Commit 7a840e7

Browse files
committed
Release v1.0.1
1 parent 8a2cabb commit 7a840e7

6 files changed

Lines changed: 15 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.0.1] - 2026-06-23
4+
5+
### Changed
6+
- Add default_encoder fallback to msgpack.packb in write_frame for broader type compatibility
7+
- Include MIT LICENSE file in all JAR artifacts
8+
39
## [1.0.0] - 2026-06-23
410

511
### Added
@@ -22,4 +28,5 @@
2228
- Close hook support for resource cleanup
2329
- 13 example applications in `python-embed-examples`
2430

31+
[1.0.1]: https://github.com/howtis/python-embed/releases/tag/v1.0.1
2532
[1.0.0]: https://github.com/howtis/python-embed/releases/tag/v1.0.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add the Gradle plugin to `build.gradle`:
1313

1414
```groovy
1515
plugins {
16-
id 'io.github.howtis.python-embed' version '1.0.0'
16+
id 'io.github.howtis.python-embed' version '1.0.1'
1717
}
1818
1919
pythonEmbed {
@@ -61,11 +61,11 @@ That's it. The Gradle plugin handles Python installation, venv creation, and pac
6161

6262
```groovy
6363
plugins {
64-
id 'io.github.howtis.python-embed' version '1.0.0'
64+
id 'io.github.howtis.python-embed' version '1.0.1'
6565
}
6666
6767
dependencies {
68-
implementation 'io.github.howtis:python-embed-runtime:1.0.0'
68+
implementation 'io.github.howtis:python-embed-runtime:1.0.1'
6969
}
7070
```
7171

@@ -296,7 +296,7 @@ Add `python-embed-spring-boot-starter` for zero-code Spring Boot 3.x integration
296296

297297
```groovy
298298
dependencies {
299-
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.0'
299+
implementation 'io.github.howtis:python-embed-spring-boot-starter:1.0.1'
300300
}
301301
```
302302

build.gradle

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

66
group = 'io.github.howtis'
7-
version = '1.0.1-SNAPSHOT'
7+
version = '1.0.1'
88

99
repositories {
1010
mavenCentral()

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.0'
6+
version = '1.0.1'
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
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'io.github.howtis'
7-
version = '1.0.0'
7+
version = '1.0.1'
88

99
repositories {
1010
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.0'
36+
* id 'io.github.howtis.python-embed' version '1.0.1'
3737
* }
3838
* pythonEmbed {
3939
* packages = ['numpy==1.26.4']

0 commit comments

Comments
 (0)