Skip to content

Commit 4cbaeb4

Browse files
committed
feat(1.2.3): Update version to 1.2.3
1 parent 27b9393 commit 4cbaeb4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "genj"
3-
version = "1.2.2"
3+
version = "1.2.3"
44
edition = "2021"
55
authors = ["Frederic Delorme <frederic.delorme@gmail.com>"]
66
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Example `.genrc` content:
6363
"created_at": "2025-11-26T14:30:45.123456+00:00",
6464
"generated_with": {
6565
"cmd": "genj",
66-
"version": "1.2.2"
66+
"version": "1.2.3"
6767
}
6868
}
6969
```
@@ -157,7 +157,7 @@ cargo run -- \
157157
**Output with `--verbose`:**
158158
```
159159
=== genj - Java Project Generator ===
160-
Version: 1.2.2
160+
Version: 1.2.3
161161
Verbose mode enabled
162162
163163
[VERBOSE] Destination path will be: ./out/Demo

README_fr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Exemple de contenu `.genrc` :
6363
"created_at": "2025-11-26T14:30:45.123456+00:00",
6464
"generated_with": {
6565
"cmd": "genj",
66-
"version": "1.2.2"
66+
"version": "1.2.3"
6767
}
6868
}
6969
```
@@ -157,7 +157,7 @@ cargo run -- \
157157
**Sortie en mode `--verbose`** :
158158
```
159159
=== genj - Java Project Generator ===
160-
Version: 1.2.2
160+
Version: 1.2.3
161161
Verbose mode enabled
162162
163163
[VERBOSE] Destination path will be: ./out/Demo

build_deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
# Configuration
66
PROJECT_NAME="genj"
7-
VERSION="1.2.2"
7+
VERSION="1.2.3"
88
MAINTAINER="Frédéric Delorme <fredericDOTdelormeATgmailDOTcom>"
99
DESCRIPTION="Generate a Java project from a template as a ZIP file or folder. \
1010
Please, look at https://github.com/mcgivrer/genj for details."

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::path::{Path, PathBuf};
99
use walkdir::WalkDir;
1010
use zip::ZipArchive;
1111

12-
const VERSION: &str = "1.2.2";
12+
const VERSION: &str = "1.2.3";
1313

1414
#[derive(Parser, Debug)]
1515
#[command(

0 commit comments

Comments
 (0)