Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Jun 17, 2024
1 parent 3470a9a commit 4b8c0ca
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

0.9.0 / 2024-06-17
==================

* chore(deps): update actions/checkout digest to 692973e (#64)
* chore(nix): fix shell invocation
* chore(deps): cargo update
* chore(deps): flake update
* chore(flake): replace flake-utils with systems
* chore(deps): update cachix/install-nix-action action to v27 (#66)
* Merge pull request #63 from deemp/main
* fix: mdsh derivation - don't depend on readme - update hash - bump patch version
* chore: bump version
* fix: improve messages about failing commands
* fix: set RUST_SRC_PATH
* chore(deps): update cachix/install-nix-action action to v26 (#60)

0.8.0 / 2024-02-27
==================

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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdsh"
version = "0.8.1"
version = "0.9.0"
authors = ["zimbatm <[email protected]>"]
edition = "2021"
description = "Markdown shell pre-processor"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ file and in exchange it allows to automate the refresh of those outputs.
`$ mdsh --help`

```
mdsh 0.8.1
mdsh 0.9.0
Markdown shell pre-processor. Never let your READMEs and tutorials get out of sync again.
Exits non-zero if a sub-command failed.
Expand Down
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
systems,
}:
let
version = (lib.importTOML "${self}/Cargo.toml").package.version;

inherit (nixpkgs) lib;
fs = lib.fileset;
eachSystem = f: lib.genAttrs (import systems) (system: f nixpkgs.legacyPackages.${system});
Expand All @@ -36,9 +38,9 @@
});

packages = eachSystem (pkgs: {
default = pkgs.rustPlatform.buildRustPackage rec {
default = pkgs.rustPlatform.buildRustPackage {
pname = "mdsh";
version = "0.8.1";
inherit version;

src = fs.toSource {
root = ./.;
Expand Down

0 comments on commit 4b8c0ca

Please sign in to comment.