File tree Expand file tree Collapse file tree 7 files changed +19
-24
lines changed Expand file tree Collapse file tree 7 files changed +19
-24
lines changed Original file line number Diff line number Diff line change @@ -75,22 +75,23 @@ jobs:
75
75
uses : actions/checkout@v4
76
76
- name : Get Tag
77
77
id : get-release-version
78
+ run : echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
78
79
- name : Download Linux Artifacts
79
80
uses : actions/download-artifact@v3
80
- with :
81
- name : bca-x86_64-linux
81
+ with :
82
+ name : bca-x86_64-linux
82
83
- name : Download Windows Artifacts
83
84
uses : actions/download-artifact@v3
84
- with :
85
- name : bca-x86_64-windows
85
+ with :
86
+ name : bca-x86_64-windows
86
87
- name : Download Intel Mac Artifacts
87
88
uses : actions/download-artifact@v3
88
- with :
89
- name : bca-x86_64-macos
89
+ with :
90
+ name : bca-x86_64-macos
90
91
- name : Download Apple Silicon Artifacts
91
92
uses : actions/download-artifact@v3
92
- with :
93
- name : bca-aarch64-macos
93
+ with :
94
+ name : bca-aarch64-macos
94
95
- name : Create GitHub release
95
96
uses : softprops/action-gh-release@v1
96
97
with :
Original file line number Diff line number Diff line change 1
1
## v0.5.0
2
2
### Features
3
3
- Finally dealing with saddle points in the charge density.
4
+ ## v0.4.7
4
5
### Small things
5
6
- took VoxelMap out of the box in bca.
6
7
## v0.4.6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bader"
3
- version = " 0.4.6 "
3
+ version = " 0.4.7 "
4
4
authors = [
" Adam Kerrigan <[email protected] >" ]
5
5
edition = " 2021"
6
6
rust-version = " 1.56.1"
Original file line number Diff line number Diff line change 1
- # bader-rs (0.4.6 )
1
+ # bader-rs (0.4.7 )
2
2
![ build] ( https://github.com/kerrigoon/bader-rs/workflows/build/badge.svg?branch=master )
3
3
[ ![ Latest Version] ( https://img.shields.io/crates/v/bader.svg )] ( https://crates.io/crates/bader )
4
4
[ ![ Documentation] ( https://docs.rs/bader/badge.svg )] ( https://docs.rs/bader/ )
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 29
29
//!
30
30
//! ## Using the library
31
31
//! Add the following to your Cargo.toml:
32
- //! `bader = "0.4.6 "`
32
+ //! `bader = "0.4.7 "`
33
33
//!
34
34
//! ### Minimum Supported Rust Version (MSRV)
35
35
//! This crate is guaranteed to compile on stable Rust 1.56.1 and up.
You can’t perform that action at this time.
0 commit comments