Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set(DESCRIPTION "Dissolve")
set(AUTHOR "Team Dissolve")
set(VERSION_MAJOR "1")
set(VERSION_MINOR "9")
set(VERSION_PATCH "0")
set(VERSION_PATCH "1")

if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
Expand Down
36 changes: 13 additions & 23 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,30 @@
# Changelog

## [1.9.0] - 2025-11-21
## [1.9.1] - 2026-08-04

### πŸš€ Features
### πŸ› Bug Fixes

- Nanotube species creator ([#2188](https://github.com/disorderedmaterials/dissolve/issues/2188))
- Clustering improvements ([#2193](https://github.com/disorderedmaterials/dissolve/issues/2193))
- Chiral nanotube and graphene sheet creator ([#2195](https://github.com/disorderedmaterials/dissolve/issues/2195))
- Consistent representative F(r) ([#2303](https://github.com/disorderedmaterials/dissolve/issues/2303))
- Scattering matrix data was not correctly updated ([#2571](https://github.com/disorderedmaterials/dissolve/issues/2571))

### πŸ› Bug Fixes
### πŸ“š Documentation

- No more custom close buttons on tabs ([#2194](https://github.com/disorderedmaterials/dissolve/issues/2194))
- Invalidated iterator error in Visual Studio build ([#2208](https://github.com/disorderedmaterials/dissolve/issues/2208))
- Replace gtest_discover_tests for Visual Studio 2022 builds ([#2229](https://github.com/disorderedmaterials/dissolve/issues/2229))
- No GeneralRegionGeneratorNode if mixSpecies is empty ([#2223](https://github.com/disorderedmaterials/dissolve/issues/2223))
- Consistent object naming ([#2238](https://github.com/disorderedmaterials/dissolve/issues/2238))
- Data limits used in potential generation ([#2236](https://github.com/disorderedmaterials/dissolve/issues/2236))
- Update VS2022 develop branch ([#2241](https://github.com/disorderedmaterials/dissolve/issues/2241))
- Don't encourage supply chain attacks ([#2552](https://github.com/disorderedmaterials/dissolve/issues/2552))

### βš™οΈ Miscellaneous Tasks

- Added concurrency group to the pr workflow to automatically cancel previous low priority workflows ([#2212](https://github.com/disorderedmaterials/dissolve/issues/2212))
- Upgrade develop branch to conan 2 ([#2237](https://github.com/disorderedmaterials/dissolve/issues/2237))
- Fix submodule hack on CI ([#2255](https://github.com/disorderedmaterials/dissolve/issues/2255))
- Nix flake whitelist ([#2256](https://github.com/disorderedmaterials/dissolve/issues/2256))
- Fix nix bundle version and fix copyright dates ([#2294](https://github.com/disorderedmaterials/dissolve/issues/2294))

### πŸ”¨οΈ Build Tools

- Refactor Powershell script for Visual Studio setup ([#2191](https://github.com/disorderedmaterials/dissolve/issues/2191))
- Add action to free up space on Linux, run on QC step. ([#2245](https://github.com/disorderedmaterials/dissolve/issues/2245))
- Fix path to examples/_index.md in website build ([#2240](https://github.com/disorderedmaterials/dissolve/issues/2240))
- Update singularity building pipeline ([#2253](https://github.com/disorderedmaterials/dissolve/issues/2253))
- Add missing OSX vars to recreate_release ([#2283](https://github.com/disorderedmaterials/dissolve/issues/2283))
- OSX packaging fixes ([#2291](https://github.com/disorderedmaterials/dissolve/issues/2291))
- Remove conan_provider.cmake on Visual Studio 2022 clean ([#2295](https://github.com/disorderedmaterials/dissolve/issues/2295))
- Conan windows aqt hwloc ([#2317](https://github.com/disorderedmaterials/dissolve/issues/2317))
- Fix Windows and OSX CI builds ([#2572](https://github.com/disorderedmaterials/dissolve/issues/2572))

### Doc

- Fix some typos, contributors, example data links. ([#2197](https://github.com/disorderedmaterials/dissolve/issues/2197))
- Update compilation instructions. ([#2244](https://github.com/disorderedmaterials/dissolve/issues/2244))
- Minor web updates jan 2026 ([#2293](https://github.com/disorderedmaterials/dissolve/issues/2293))

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
});
exe-name = mpi: gui: if mpi then "dissolve-mpi" else (if gui then "dissolve-gui" else "dissolve");
cmake-bool = x: if x then "ON" else "OFF";
version = "1.9.0";
version = "1.9.1";
base_libs =
pkgs: with pkgs; [
antlr4
Expand Down
2 changes: 1 addition & 1 deletion src/main/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <iostream>
#include <string>

#define DISSOLVEVERSION "1.9.0"
#define DISSOLVEVERSION "1.9.1"
#define DISSOLVESHORTHASH ""
#define DISSOLVEREPO "https://github.com/disorderedmaterials/dissolve.git"

Expand Down
4 changes: 2 additions & 2 deletions web/main.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ latexDashes = true
# General Parameters
[params]
copyright = "Team Dissolve and contributors. Built using Hugo/Docsy."
releaseVersion = "1.9.0"
releaseDate = "Friday 21st November 2025"
releaseVersion = "1.9.1"
releaseDate = "Tuesday 4th August 2026"
github_repo = "https://github.com/disorderedmaterials/dissolve"
github_subdir = "web"
github_branch = "develop"
Expand Down
Loading