Skip to content

Commit

Permalink
release: version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maddiemort committed Oct 6, 2024
1 parent 644d568 commit b71a4f4
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
([644d568](https://github.com/maddiemort/vexillologist/commit/644d56850da505782c50152243af38262dbabb71))
* remove shuttle and run directly with serenity
([351614d](https://github.com/maddiemort/vexillologist/commit/351614d28cc9c4d63359775adbd5aad0bdd063ff))
* rename weighted "score" to "medal points"
([1f6db8a](https://github.com/maddiemort/vexillologist/commit/1f6db8a0eccab5f3f4c312f3eaee4277d81030ec))
* stop including user ID in medal sorting
([1679d72](https://github.com/maddiemort/vexillologist/commit/1679d728238f65e8d15f8f4316ccbbaccc54f7db))
* change medal sorting to use 4-2-1 weighted score
([90f2d0c](https://github.com/maddiemort/vexillologist/commit/90f2d0c34257f31ef340fbd5fdbe57f9a243166f))
* default late submissions to disabled in all-time GeoGrid leaderboard
([ffceeef](https://github.com/maddiemort/vexillologist/commit/ffceeef4d6ed2a6ec192456b964a184abad61ece))
* allow turning off today's and late scores in all-time GeoGrid leaderboard
([533b771](https://github.com/maddiemort/vexillologist/commit/533b77141d9f86d5cdc12337550500ae97895345))
* log the guild ID in a couple of places
([b7d31bb](https://github.com/maddiemort/vexillologist/commit/b7d31bb8152b1a0cbbed9fc9abd31b8afebf1594))
* include rerun footer in all-time GeoGrid leaderboard too
([2bb516c](https://github.com/maddiemort/vexillologist/commit/2bb516c00da505699a3fa51de3bf41307923d8a7))
* all-time GeoGrid leaderboard
([4881e94](https://github.com/maddiemort/vexillologist/commit/4881e94e8c0b183b6d27ca74ffd77cbb083eeaeb))
* daily GeoGrid leaderboard
([33551db](https://github.com/maddiemort/vexillologist/commit/33551db79aaad2238cccbb624023b56a4e82b3bc))
* take account of which day a GeoGrid score was submitted
([9871c0d](https://github.com/maddiemort/vexillologist/commit/9871c0df23cf62856e811fef879ac1a0444c3527))
* basic GeoGrid score persistence
([42deaa8](https://github.com/maddiemort/vexillologist/commit/42deaa8b2374e24c9a6d8a6e78bb4612f309a19a))
* switch to Shuttle, with serenity
([6822103](https://github.com/maddiemort/vexillologist/commit/68221038733c28b5a6cf6c85f5d3a5b4a8605f23))
* GeoGrid score parsing
([fade5e4](https://github.com/maddiemort/vexillologist/commit/fade5e4fe8e00b7384ecd60f579f61d1c627c005))
* basic Discord bot from twilight example
([6100ce1](https://github.com/maddiemort/vexillologist/commit/6100ce16f2e8a470cc4eaf10bf42a7b62360f079))
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 b71a4f4

Please sign in to comment.