Skip to content

Commit 49b7bc5

Browse files
committed
update docs
1 parent 14890fe commit 49b7bc5

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
### 4.0.0 (2024-04-13)
12
* (breaking) Drop gradle 5 and 6 support
23
* (breaking) All plugin tasks become abstract, so any custom task types should be abstract too
34
* (breaking) All tasks use lazy properties instead of convention mapping (affects custom tasks)

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ Features:
2222

2323
* Works with directly installed python or docker container (with python)
2424
* Creates local (project-specific) virtualenv (project-specific python copy)
25-
* Installs required pip modules (virtualenv by default, but could be global installation)
25+
* Installs required pip modules (venv by default (with fallback to virtualenv), but could be global installation)
2626
* Support requirements.txt file (limited by default)
27+
* Compatible with gradle configuration cache
2728
* Could be used as basement for building plugins for specific python modules (like
2829
[mkdocs plugin](https://github.com/xvik/gradle-mkdocs-plugin))
2930

@@ -52,7 +53,7 @@ buildscript {
5253
mavenCentral()
5354
}
5455
dependencies {
55-
classpath 'ru.vyarus:gradle-use-python-plugin:3.0.0'
56+
classpath 'ru.vyarus:gradle-use-python-plugin:4.0.0'
5657
}
5758
}
5859
apply plugin: 'ru.vyarus.use-python'
@@ -62,18 +63,20 @@ OR
6263

6364
```groovy
6465
plugins {
65-
id 'ru.vyarus.use-python' version '3.0.0'
66+
id 'ru.vyarus.use-python' version '4.0.0'
6667
}
6768
```
6869

6970
#### Compatibility
7071

71-
Plugin compiled for java 8, compatible with java 11. Supports python 2 and 3 on windows and linux (macos).
72+
Plugin compiled for java 8, compatible with java 11, 17.
73+
Supports python 2 (not tested anymore, but should work) and 3 on windows and linux (macos)
7274

7375
Gradle | Version
7476
--------|-------
75-
5.3-8 | 3.0.0
76-
5-5.2 | 2.3.0
77+
7.0 | 4.0.0
78+
5.3 | [3.0.0](https://xvik.github.io/gradle-use-python-plugin/3.0.0/)
79+
5-5.2 | [2.3.0](https://xvik.github.io/gradle-use-python-plugin/2.3.0/)
7780
4.x | [1.2.0](https://github.com/xvik/gradle-use-python-plugin/tree/1.2.0)
7881

7982
#### Snapshots

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ github {
4444

4545
mkdocs {
4646
extras = [
47-
'version': '3.0.0',
48-
'image': 'python:3.10.8-alpine3.15'
47+
'version': '4.0.0',
48+
'image': 'python:3.11.8-alpine3.19'
4949
]
5050
publish {
5151
docPath = mkdocs.extras['version']

src/doc/docs/about/compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Works with python 2 and 3 (but python 2 not tested anymore) on windows and linux
66
Gradle | Version
77
--------|-------
88
7.0 | 4.0.0
9-
5.3 | 3.0.0
10-
5-5.2 | 2.3.0
9+
5.3 | [3.0.0](https://xvik.github.io/gradle-use-python-plugin/3.0.0/)
10+
5-5.2 | [2.3.0](https://xvik.github.io/gradle-use-python-plugin/2.3.0/)
1111
4.x | [1.2.0](https://github.com/xvik/gradle-use-python-plugin/tree/1.2.0)

0 commit comments

Comments
 (0)