Skip to content

Commit 29e5cfe

Browse files
Merge pull request #161 from adam-kerrigan/v0.4.7-release
v0.4.7 release
2 parents ab96d60 + 0a71bf9 commit 29e5cfe

File tree

7 files changed

+19
-24
lines changed

7 files changed

+19
-24
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,23 @@ jobs:
7575
uses: actions/checkout@v4
7676
- name: Get Tag
7777
id: get-release-version
78+
run: echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
7879
- name: Download Linux Artifacts
7980
uses: actions/download-artifact@v3
80-
with:
81-
name: bca-x86_64-linux
81+
with:
82+
name: bca-x86_64-linux
8283
- name: Download Windows Artifacts
8384
uses: actions/download-artifact@v3
84-
with:
85-
name: bca-x86_64-windows
85+
with:
86+
name: bca-x86_64-windows
8687
- name: Download Intel Mac Artifacts
8788
uses: actions/download-artifact@v3
88-
with:
89-
name: bca-x86_64-macos
89+
with:
90+
name: bca-x86_64-macos
9091
- name: Download Apple Silicon Artifacts
9192
uses: actions/download-artifact@v3
92-
with:
93-
name: bca-aarch64-macos
93+
with:
94+
name: bca-aarch64-macos
9495
- name: Create GitHub release
9596
uses: softprops/action-gh-release@v1
9697
with:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## v0.5.0
22
### Features
33
- Finally dealing with saddle points in the charge density.
4+
## v0.4.7
45
### Small things
56
- took VoxelMap out of the box in bca.
67
## v0.4.6

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bader"
3-
version = "0.4.6"
3+
version = "0.4.7"
44
authors = ["Adam Kerrigan <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bader-rs (0.4.6)
1+
# bader-rs (0.4.7)
22
![build](https://github.com/kerrigoon/bader-rs/workflows/build/badge.svg?branch=master)
33
[![Latest Version](https://img.shields.io/crates/v/bader.svg)](https://crates.io/crates/bader)
44
[![Documentation](https://docs.rs/bader/badge.svg)](https://docs.rs/bader/)

RELEASE.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
1-
### Features
2-
- Added a method for calculating the Laplacian at a point.
3-
- Added way to calculate the error in the partitioning from the Laplacian.
4-
### Changes
5-
- Voronoi now stores the volume of the Voronoi cell.
6-
- Removed clap as a dependancy.
7-
- Changed the flags for file type to -f --file_type from -t --type.
8-
- Changed the short flag for threads to -t from -J.
9-
- Removed indicatif and atomic-counter as dependancies.
10-
- Removed regex from dependancies.
11-
- Progress bars are now created inside functions and whether they are shown is optional.
12-
- Added a new silent flag: -x --silent.
1+
## v0.4.7
2+
### Small things
3+
- took VoxelMap out of the box in bca.
4+
5+
small release to check workflows

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//!
3030
//! ## Using the library
3131
//! Add the following to your Cargo.toml:
32-
//! `bader = "0.4.6"`
32+
//! `bader = "0.4.7"`
3333
//!
3434
//! ### Minimum Supported Rust Version (MSRV)
3535
//! This crate is guaranteed to compile on stable Rust 1.56.1 and up.

0 commit comments

Comments
 (0)