Skip to content

Commit 19aedcf

Browse files
authored
preparing release 0.3.7 (#200)
1 parent 22ff58b commit 19aedcf

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you need to create small or medium projects (<300 modules), you can use the w
1010
## CLI
1111
### Install
1212
```
13-
curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.6/projectGenerator --output projectGenerator
13+
curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.7/projectGenerator --output projectGenerator
1414
chmod 0757 projectGenerator
1515
```
1616

@@ -49,6 +49,7 @@ Then, you can use the versions.yaml in the `generate-project` command:
4949
- `--develocity-url`: Specify Develocity URL
5050
- `--versions-file`: Path to a custom YAML file with dependency versions
5151
- `--project-name`: Name of the project
52+
- `--agp9`: Use AGP 9.x (default: false). Only for Android projects.
5253

5354
#### Example: Generate a project with custom options
5455
```bash
@@ -76,7 +77,7 @@ ProjectGenerator(
7677
```
7778
### Dependency
7879
```
79-
implementation("io.github.cdsap:projectgenerator:0.3.6")
80+
implementation("io.github.cdsap:projectgenerator:0.3.7")
8081
```
8182

8283
# Options

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN npm install
1818
COPY . .
1919

2020
# Download CLI
21-
RUN curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.6/projectGenerator \
21+
RUN curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.7/projectGenerator \
2222
--output /usr/local/bin/projectGenerator && \
2323
chmod 0755 /usr/local/bin/projectGenerator
2424

project-generator/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "io.github.cdsap"
9-
version = "0.3.6"
9+
version = "0.3.7"
1010

1111
dependencies {
1212
implementation(libs.kotlinx.coroutines.core)
@@ -37,7 +37,7 @@ tasks.register<Test>("unitTest") {
3737
mavenPublishing {
3838
publishToMavenCentral()
3939
signAllPublications()
40-
coordinates("io.github.cdsap", "projectgenerator", "0.3.6")
40+
coordinates("io.github.cdsap", "projectgenerator", "0.3.7")
4141

4242
pom {
4343
scm {

0 commit comments

Comments
 (0)