Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you need to create small or medium projects (<300 modules), you can use the w
## CLI
### Install
```
curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.7/projectGenerator --output projectGenerator
curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.8/projectGenerator --output projectGenerator
chmod 0757 projectGenerator
```

Expand Down Expand Up @@ -77,7 +77,7 @@ ProjectGenerator(
```
### Dependency
```
implementation("io.github.cdsap:projectgenerator:0.3.7")
implementation("io.github.cdsap:projectgenerator:0.3.8")
```

# Options
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN npm install
COPY . .

# Download CLI
RUN curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.7/projectGenerator \
RUN curl -L https://github.com/cdsap/ProjectGenerator/releases/download/v0.3.8/projectGenerator \
--output /usr/local/bin/projectGenerator && \
chmod 0755 /usr/local/bin/projectGenerator

Expand Down
4 changes: 2 additions & 2 deletions project-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "io.github.cdsap"
version = "0.3.7"
version = "0.3.8"

dependencies {
implementation(libs.kotlinx.coroutines.core)
Expand Down Expand Up @@ -37,7 +37,7 @@ tasks.register<Test>("unitTest") {
mavenPublishing {
publishToMavenCentral()
signAllPublications()
coordinates("io.github.cdsap", "projectgenerator", "0.3.7")
coordinates("io.github.cdsap", "projectgenerator", "0.3.8")

pom {
scm {
Expand Down