Skip to content

Commit

Permalink
release: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maddiemort committed Oct 6, 2024
1 parent deb33ef commit 084bb53
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Changelog

## v1.0.0 (2024-10-06)

### Features

* drop username column from users table
([f51a736](https://github.com/maddiemort/vexillologist/commit/f51a736fe9d0b138f04b013ebcc96866c1d2cb15))
* remove shuttle and run directly with serenity
([3e77f65](https://github.com/maddiemort/vexillologist/commit/3e77f65b46d7715ae656928ec644eaa23c87cbf0))
* rename weighted "score" to "medal points"
([08facd1](https://github.com/maddiemort/vexillologist/commit/08facd17eff9b6d0d09d22f52e9d4c68124b6e98))
* stop including user ID in medal sorting
([3ba0b63](https://github.com/maddiemort/vexillologist/commit/3ba0b63ab9d9b99ece2e6069558db310c1db6fcc))
* change medal sorting to use 4-2-1 weighted score
([ecb44e1](https://github.com/maddiemort/vexillologist/commit/ecb44e1d4b0140987130019f2f018277c01ac8c8))
* default late submissions to disabled in all-time GeoGrid leaderboard
([00f2c42](https://github.com/maddiemort/vexillologist/commit/00f2c426e527a75ee323a050dd40c6bfe3002bfa))
* allow turning off today's and late scores in all-time GeoGrid leaderboard
([fb0d6c2](https://github.com/maddiemort/vexillologist/commit/fb0d6c2bc4239b1c8759bc591b72b892e75e6512))
* log the guild ID in a couple of places
([a816650](https://github.com/maddiemort/vexillologist/commit/a81665016efc08552d3ca7c733721d8febd21678))
* include rerun footer in all-time GeoGrid leaderboard too
([0d57520](https://github.com/maddiemort/vexillologist/commit/0d5752029ba3f703ae555877ed425823551a7704))
* all-time GeoGrid leaderboard
([c351127](https://github.com/maddiemort/vexillologist/commit/c35112761d0e76b84e3e157857501bcad26f957c))
* daily GeoGrid leaderboard
([63e1304](https://github.com/maddiemort/vexillologist/commit/63e13041e2e6cc865f3ab33e9f400656d00c7ef0))
* take account of which day a GeoGrid score was submitted
([c11fde9](https://github.com/maddiemort/vexillologist/commit/c11fde90fa1f5a77aef7dfa52a1fe4e4260d49ce))
* basic GeoGrid score persistence
([5d33c1e](https://github.com/maddiemort/vexillologist/commit/5d33c1ece7033be6c8e3973aa592839016968dc9))
* switch to Shuttle, with serenity
([ee621a0](https://github.com/maddiemort/vexillologist/commit/ee621a08c60f649b61ed146594489e85dde3d58b))
* GeoGrid score parsing
([6fea808](https://github.com/maddiemort/vexillologist/commit/6fea808aa105c1bcdae915749dbe528fe630ba93))
* basic Discord bot from twilight example
([dc07667](https://github.com/maddiemort/vexillologist/commit/dc07667f7aaf1dbdc43f42c5748f741570618d36))
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 = "342c8e6eaf5ce98721dd60f42c72f8e2dd33eaf6eb03866f7e475f9210ccaedd";
nixifiedLockHash = "c58ba1611930325981e68834e9999aec6a91bc37878584a149ab5f564343d9ff";
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."0.1.0";
vexillologist = rustPackages.unknown.vexillologist."1.0.0";
};
"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."0.1.0" = overridableMkRustCrate (profileName: rec {
"unknown".vexillologist."1.0.0" = overridableMkRustCrate (profileName: rec {
name = "vexillologist";
version = "0.1.0";
version = "1.0.0";
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 = "0.1.0"
version = "1.0.0"
edition = "2021"
publish = false
repository = "https://github.com/maddiemort/vexillologist"
Expand Down

0 comments on commit 084bb53

Please sign in to comment.