diff --git a/CHANGELOG.md b/CHANGELOG.md index 327a793..9352a05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +### 4.1.0 (2024-11-09) * Hide password inside --index-url pip parameter in console output (#146) * Add python.indexUrl configuration option (to override default pip repository) * Changed default docker image (python.docker.image) from python:3.11.8-alpine3.19 to python:3.12.7-alpine3.20 diff --git a/README.md b/README.md index c73eb27..f397509 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'ru.vyarus:gradle-use-python-plugin:4.0.0' + classpath 'ru.vyarus:gradle-use-python-plugin:4.1.0' } } apply plugin: 'ru.vyarus.use-python' @@ -63,7 +63,7 @@ OR ```groovy plugins { - id 'ru.vyarus.use-python' version '4.0.0' + id 'ru.vyarus.use-python' version '4.1.0' } ``` @@ -74,7 +74,7 @@ Supports python 2 (not tested anymore, but should work) and 3 on windows and lin Gradle | Version --------|------- -7.0 | 4.0.0 +7-8 | 4.1.0 5.3 | [3.0.0](https://xvik.github.io/gradle-use-python-plugin/3.0.0/) 5-5.2 | [2.3.0](https://xvik.github.io/gradle-use-python-plugin/2.3.0/) 4.x | [1.2.0](https://github.com/xvik/gradle-use-python-plugin/tree/1.2.0) diff --git a/build.gradle b/build.gradle index 8fcb8cb..6d926ef 100644 --- a/build.gradle +++ b/build.gradle @@ -44,8 +44,8 @@ github { mkdocs { extras = [ - 'version': '4.0.0', - 'image': 'python:3.11.8-alpine3.19' + 'version': '4.1.0', + 'image': 'python:3.12.7-alpine3.20' ] publish { docPath = mkdocs.extras['version'] diff --git a/src/doc/docs/about/compatibility.md b/src/doc/docs/about/compatibility.md index 6fee6e7..c11996b 100644 --- a/src/doc/docs/about/compatibility.md +++ b/src/doc/docs/about/compatibility.md @@ -5,7 +5,7 @@ Works with python 2 and 3 (but python 2 not tested anymore) on windows and linux Gradle | Version --------|------- -7.0 | 4.0.0 +7-8 | 4.1.0 5.3 | [3.0.0](https://xvik.github.io/gradle-use-python-plugin/3.0.0/) 5-5.2 | [2.3.0](https://xvik.github.io/gradle-use-python-plugin/2.3.0/) 4.x | [1.2.0](https://github.com/xvik/gradle-use-python-plugin/tree/1.2.0) diff --git a/src/doc/docs/about/history.md b/src/doc/docs/about/history.md index e28fa30..a46ccd7 100644 --- a/src/doc/docs/about/history.md +++ b/src/doc/docs/about/history.md @@ -1,5 +1,7 @@ +### [4.1.0](http://xvik.github.io/gradle-use-python-plugin/4.1.0) (2024-11-09) * Hide password inside --index-url pip parameter in console output (#146) * Add python.indexUrl configuration option (to override default pip repository) +* Changed default docker image (python.docker.image) from python:3.11.8-alpine3.19 to python:3.12.7-alpine3.20 ### [4.0.0](http://xvik.github.io/gradle-use-python-plugin/4.0.0) (2024-04-13) * (breaking) Drop gradle 5 and 6 support