Skip to content

Commit

Permalink
release: v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maddiemort committed Oct 20, 2024
1 parent bdffdfc commit 8baf00f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [v0.1.1](https://github.com/maddiemort/maddie-wtf/compare/v0.1.0...v0.1.1) (2024-10-20)

### Features

* respect the "drafts" flag
([b9babb0](https://github.com/maddiemort/maddie-wtf/commit/b9babb038e21af00d097e1e30d00e8a76a6a370d))

## v0.1.0 (2024-10-07)

### 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 = "f4ef0a5694dcfa5d6319f48b79e0002c52e70ca17146277ec2b618e921c62fc1";
nixifiedLockHash = "f6b08b35ca2d51e956a0e699a1673a00a27a9d7daefd66b0822a920b6970f8a6";
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 = {
maddie-wtf = rustPackages.unknown.maddie-wtf."0.1.0";
maddie-wtf = rustPackages.unknown.maddie-wtf."0.1.1";
};
"registry+https://github.com/rust-lang/crates.io-index".addr2line."0.22.0" = overridableMkRustCrate (profileName: rec {
name = "addr2line";
Expand Down Expand Up @@ -1612,9 +1612,9 @@ else
];
});

"unknown".maddie-wtf."0.1.0" = overridableMkRustCrate (profileName: rec {
"unknown".maddie-wtf."0.1.1" = overridableMkRustCrate (profileName: rec {
name = "maddie-wtf";
version = "0.1.0";
version = "0.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 = "maddie-wtf"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 8baf00f

Please sign in to comment.