diff --git a/Cargo.lock b/Cargo.lock index 0ead377e..24ff9fc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -354,13 +354,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fractal-gtk" -version = "3.29.1" +version = "3.29.4" dependencies = [ "cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "comrak 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fractal-matrix-api 3.29.1", + "fractal-matrix-api 3.29.4", "fragile 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "gdk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "gdk-pixbuf 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -392,7 +392,7 @@ dependencies = [ [[package]] name = "fractal-matrix-api" -version = "3.29.1" +version = "3.29.4" dependencies = [ "cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/fractal-gtk/Cargo.toml b/fractal-gtk/Cargo.toml index 00533d31..2fd91a87 100644 --- a/fractal-gtk/Cargo.toml +++ b/fractal-gtk/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Daniel Garcia "] build = "build.rs" name = "fractal-gtk" -version = "3.29.1" +version = "3.29.4" workspace = "../" [dependencies] diff --git a/fractal-gtk/res/org.gnome.Fractal.appdata.xml b/fractal-gtk/res/org.gnome.Fractal.appdata.xml index 3be9b500..21c2b566 100644 --- a/fractal-gtk/res/org.gnome.Fractal.appdata.xml +++ b/fractal-gtk/res/org.gnome.Fractal.appdata.xml @@ -18,7 +18,7 @@ - + danigm@wadobo.com diff --git a/fractal-matrix-api/Cargo.toml b/fractal-matrix-api/Cargo.toml index 5eb62d6c..ead3491f 100644 --- a/fractal-matrix-api/Cargo.toml +++ b/fractal-matrix-api/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Daniel Garcia "] name = "fractal-matrix-api" -version = "3.29.1" +version = "3.29.4" workspace = "../" description = """ diff --git a/meson.build b/meson.build index 94666c13..b0619d63 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'fractal', 'rust', - version: '3.29.1', + version: '3.29.4', license: 'GPLv3', ) diff --git a/scripts/new-release.sh b/scripts/new-release.sh index 72241d28..cabee213 100755 --- a/scripts/new-release.sh +++ b/scripts/new-release.sh @@ -13,6 +13,9 @@ case $1 in "minor") next=$(echo $mayor.$(($minor + 1)).0) ;; +"version") + next=$2 + ;; *) next=$(echo $mayor.$minor.$(($rev + 1))) ;;