Skip to content

Commit d436567

Browse files
[Release] 1.8.0 (#2184)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 563109e commit d436567

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CMakeLists.txt

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

1010
if(NOT CMAKE_BUILD_TYPE)

ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.8.0] - 2025-06-09
3+
## [1.8.0] - 2025-06-10
44

55
### 🚀 Features
66

@@ -24,6 +24,7 @@
2424

2525
- Fix image links for ModifierOSites and QSpecies ([#2131](https://github.com/disorderedmaterials/dissolve/issues/2131))
2626
- Fix some code formatting issues. ([#2166](https://github.com/disorderedmaterials/dissolve/issues/2166))
27+
- Revert unwanted version change in code. ([#2183](https://github.com/disorderedmaterials/dissolve/issues/2183))
2728

2829
### 🔨️ Build Tools
2930

@@ -39,6 +40,8 @@
3940
- Fix version bumping of continuous build ([#2173](https://github.com/disorderedmaterials/dissolve/issues/2173))
4041
- Add missing example data archives to published assets ([#2178](https://github.com/disorderedmaterials/dissolve/issues/2178))
4142
- Fix target OS version for OSX dependent libs ([#2176](https://github.com/disorderedmaterials/dissolve/issues/2176))
43+
- Fix bad syntax in release pipeline. ([#2181](https://github.com/disorderedmaterials/dissolve/issues/2181))
44+
- Use artifacts for Windows and OSX Qt ([#2180](https://github.com/disorderedmaterials/dissolve/issues/2180))
4245

4346
### Doc
4447

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.8.0";
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.8.0"
1010
#define DISSOLVESHORTHASH ""
1111
#define DISSOLVEREPO "https://github.com/disorderedmaterials/dissolve.git"
1212

web/main.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ latexDashes = true
4747
# General Parameters
4848
[params]
4949
copyright = "Team Dissolve and contributors. Built using Hugo/Docsy."
50-
releaseVersion = "1.7.0"
50+
releaseVersion = "1.8.0"
5151
releaseDate = "Tuesday 10th June 2025"
5252
github_repo = "https://github.com/disorderedmaterials/dissolve"
5353
github_subdir = "web"

0 commit comments

Comments
 (0)