diff --git a/CMakeLists.txt b/CMakeLists.txt index 0552e377ab..a18ee1b568 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(DESCRIPTION "Dissolve") set(AUTHOR "Team Dissolve") set(VERSION_MAJOR "1") set(VERSION_MINOR "3") -set(VERSION_PATCH "1") +set(VERSION_PATCH "2") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release") diff --git a/README.md b/README.md index 8d8b2335f4..a100ff694e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Dissolve's Logo](icon/logo.png) -_Last Release: 1.3.1, Wednesday 12th July 2023_ +_Last Release: 1.3.2, Thursday 3rd August 2023_ _Release Build::_ [![Release Build Status](https://github.com/disorderedmaterials/dissolve/actions/workflows/release.yml/badge.svg)](https://github.com/disorderedmaterials/dissolve/actions/workflows/release.yml) _Development Build::_ [![Development Build Status](https://github.com/disorderedmaterials/dissolve/actions/workflows/continuous.yml/badge.svg)](https://github.com/disorderedmaterials/dissolve/actions/workflows/continuous.yml) diff --git a/ci/windows/dissolve-gui.iss b/ci/windows/dissolve-gui.iss index 0690e558c7..7287392b96 100644 --- a/ci/windows/dissolve-gui.iss +++ b/ci/windows/dissolve-gui.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Dissolve-GUI" -#define MyAppVersion "1.3.1" +#define MyAppVersion "1.3.2" #define MyAppPublisher "Team Dissolve" #define MyAppURL "https://www.projectdissolve.com/" #define MyAppExeName "Dissolve-GUI.exe" @@ -31,7 +31,7 @@ DefaultDirName={commonpf}\Dissolve-GUI DefaultGroupName={#MyAppName} LicenseFile=..\..\LICENSE.txt OutputDir=..\..\ -OutputBaseFilename=Dissolve-GUI-1.3.1-Win64 +OutputBaseFilename=Dissolve-GUI-1.3.2-Win64 SetupIconFile=Dissolve.ico Compression=lzma SolidCompression=yes diff --git a/flake.nix b/flake.nix index 32e86a042b..5bc18ec587 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,7 @@ else (if gui then "dissolve-gui" else "dissolve"); cmake-bool = x: if x then "ON" else "OFF"; - version = "1.3.1"; + version = "1.3.2"; base_libs = pkgs: with pkgs; [ antlr4 diff --git a/src/main/version.cpp b/src/main/version.cpp index 6367cb84a7..346c020b60 100644 --- a/src/main/version.cpp +++ b/src/main/version.cpp @@ -4,7 +4,7 @@ #include "main/version.h" #include -#define DISSOLVEVERSION "1.3.1" +#define DISSOLVEVERSION "1.3.2" #define DISSOLVESHORTHASH "" #define DISSOLVEREPO "https://github.com/disorderedmaterials/dissolve.git" diff --git a/web/docs.toml b/web/docs.toml index 34d8ac28be..68a2f0ddfa 100644 --- a/web/docs.toml +++ b/web/docs.toml @@ -47,8 +47,8 @@ latexDashes = true # General Parameters [params] copyright = "Team Dissolve and contributors. Built using Hugo/Docsy." -releaseVersion = "1.3.1" -releaseDate = "12th July 2023" +releaseVersion = "1.3.2" +releaseDate = "3rd August 2023" github_repo = "https://github.com/disorderedmaterials/dissolve" github_subdir = "web" github_branch = "develop" diff --git a/web/main.toml b/web/main.toml index 27d8c1fdab..caaad106ce 100644 --- a/web/main.toml +++ b/web/main.toml @@ -47,8 +47,8 @@ latexDashes = true # General Parameters [params] copyright = "Team Dissolve and contributors. Built using Hugo/Docsy." -releaseVersion = "1.3.1" -releaseDate = "12th July 2023" +releaseVersion = "1.3.2" +releaseDate = "3rd August 2023" devVersion = "1.3.0" github_repo = "https://github.com/disorderedmaterials/dissolve" github_subdir = "web"