Skip to content

Commit

Permalink
release: version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maddiemort committed Oct 6, 2024
1 parent 2b0f6da commit cd7b4c6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [v1.1.1](https://github.com/maddiemort/vexillologist/compare/v1.1.0...v1.1.1) (2024-10-06)

### Fixes

* order flagle scores descending when calculating best score
([2b0f6da](https://github.com/maddiemort/vexillologist/commit/2b0f6da5594166fd203172666b3d45332d2ca656))
* stop markdown from interfering with Flagle score lists
([4c95789](https://github.com/maddiemort/vexillologist/commit/4c95789c8642d343b5c62bcb9bc5f20f915d2055))
* rank Flagle leaderboard entries the same if scores are the same
([6c94a59](https://github.com/maddiemort/vexillologist/commit/6c94a5975fccc256102620db2de6e56687d03a97))

## [v1.1.0](https://github.com/maddiemort/vexillologist/compare/v1.0.0...v1.1.0) (2024-10-06)

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ args@{ release ? true
,
}:
let
nixifiedLockHash = "e462c76ee4b0d6e83811b429488a86b1bc5f9115b1620480fc3a7b3d34d5a6af";
nixifiedLockHash = "cca9feeacced7846462a79308f8ba431bf512cef41fbeed1239ef24160b5572c";
workspaceSrc = if args.workspaceSrc == null then ./. else args.workspaceSrc;
currentLockHash = builtins.hashFile "sha256" (workspaceSrc + /Cargo.lock);
lockHashIgnored =
Expand All @@ -51,7 +51,7 @@ else
{
cargo2nixVersion = "0.11.0";
workspace = {
vexillologist = rustPackages.unknown.vexillologist."1.1.0";
vexillologist = rustPackages.unknown.vexillologist."1.1.1";
};
"registry+https://github.com/rust-lang/crates.io-index".addr2line."0.22.0" = overridableMkRustCrate (profileName: rec {
name = "addr2line";
Expand Down Expand Up @@ -3359,9 +3359,9 @@ else
src = fetchCratesIo { inherit name version; sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"; };
});

"unknown".vexillologist."1.1.0" = overridableMkRustCrate (profileName: rec {
"unknown".vexillologist."1.1.1" = overridableMkRustCrate (profileName: rec {
name = "vexillologist";
version = "1.1.0";
version = "1.1.1";
registry = "unknown";
src = fetchCrateLocal workspaceSrc;
dependencies = {
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vexillologist"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
publish = false
repository = "https://github.com/maddiemort/vexillologist"
Expand Down

0 comments on commit cd7b4c6

Please sign in to comment.