Skip to content

Commit dc49d1f

Browse files
[Release] 1.7.1 (#2134)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 66c26e9 commit dc49d1f

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(DESCRIPTION "Dissolve")
55
set(AUTHOR "Team Dissolve")
66
set(VERSION_MAJOR "1")
77
set(VERSION_MINOR "7")
8-
set(VERSION_PATCH "0")
8+
set(VERSION_PATCH "1")
99

1010
if(NOT CMAKE_BUILD_TYPE)
1111
set(CMAKE_BUILD_TYPE "Release")

ChangeLog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [1.7.1] - 2025-04-11
4+
5+
### 🐛 Bug Fixes
6+
7+
- Checking species setup would crash if CoordinateSets were used ([#2133](https://github.com/disorderedmaterials/dissolve/issues/2133))
8+
9+
### ⚙️ Miscellaneous Tasks
10+
11+
- Fix image links for ModifierOSites and QSpecies ([#2131](https://github.com/disorderedmaterials/dissolve/issues/2131))
12+
13+
### 🔨️ Build Tools
14+
15+
- Introduce recreate_release workflow ([#2115](https://github.com/disorderedmaterials/dissolve/issues/2115))
16+
- Store ChangeLog.md in release branch ([#2118](https://github.com/disorderedmaterials/dissolve/issues/2118))
17+
- Lock cmake to v3 (Windows) ([#2122](https://github.com/disorderedmaterials/dissolve/issues/2122))
18+
- Add missing GSL libs to OSX package ([#2123](https://github.com/disorderedmaterials/dissolve/issues/2123))
19+
20+
### Doc
21+
22+
- Glass modules documentation ([#2124](https://github.com/disorderedmaterials/dissolve/issues/2124))
23+
24+
<!-- generated by git-cliff -->

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
else
2222
(if gui then "dissolve-gui" else "dissolve");
2323
cmake-bool = x: if x then "ON" else "OFF";
24-
version = "1.7.0";
24+
version = "1.7.1";
2525
base_libs = pkgs:
2626
with pkgs; [
2727
antlr4

src/main/version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <iostream>
77
#include <string>
88

9-
#define DISSOLVEVERSION "1.7.0"
9+
#define DISSOLVEVERSION "1.7.1"
1010
#define DISSOLVESHORTHASH ""
1111
#define DISSOLVEREPO "https://github.com/disorderedmaterials/dissolve.git"
1212

web/main.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ latexDashes = true
4747
# General Parameters
4848
[params]
4949
copyright = "Team Dissolve and contributors. Built using Hugo/Docsy."
50-
releaseVersion = "1.7.0"
51-
releaseDate = "Thursday 27th March 2025"
50+
releaseVersion = "1.7.1"
51+
releaseDate = "Friday 11th April 2025"
5252
github_repo = "https://github.com/disorderedmaterials/dissolve"
5353
github_subdir = "web"
5454
github_branch = "develop"

0 commit comments

Comments
 (0)