Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Nov 9, 2024
1 parent 5798907 commit a436bc7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
}
```

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
2 changes: 1 addition & 1 deletion src/doc/docs/about/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 2 additions & 0 deletions src/doc/docs/about/history.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a436bc7

Please sign in to comment.