Skip to content

Commit

Permalink
repo: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonHakansson committed Jan 23, 2024
1 parent 7200a9d commit 0477547
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ With ~emacsWithPackagesFromUsePackage~ you can do:
extraEmacsPackages = epkgs:
[(epkgs.trivialBuild rec {
pname = "org-nix-shell";
version = "v0.1.1";
version = "v0.1.2";
packageRequires = [ epkgs.envrc ];
src = pkgs.fetchFromGitHub {
owner = "AntonHakansson";
repo = pname;
rev = "1dd881bf34c8c8649cd1ccfbd548a07dae212194";
sha256 = "sha256-suOBm3hIIKcXCGO98g1OXIgsuFDi9pNrXBod1ZsrZeM";
rev = ${version};
sha256 = lib.fakeHash;
};
})];
};
Expand Down
7 changes: 6 additions & 1 deletion org-nix-shell.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Maintainer: Anton Hakansson <[email protected]>
;; URL: https://github.com/AntonHakansson/
;; Version: 0.1.1
;; Version: 0.1.2
;; Package-Requires: ((emacs "27.1") (org) (envrc))
;; Keywords: org-mode, org-babel, nix, nix-shell

Expand Down Expand Up @@ -55,6 +55,11 @@
;;
;;
;;; NEWS:
;; Version 0.1.2
;; - Introduced `org-nix-shell-dired' that opens the direnv directory with dired.
;; - Fixed `org-nix-shell-ctrl-c-ctrl-c' to never block babel execution.
;; - Updated docs.
;;
;; Version 0.1.1
;; - Introduced `org-nix-shell-mode' that seamlessly loads nix-shell environment on
;; org-ctrl-c-ctrl-c-hook.
Expand Down

0 comments on commit 0477547

Please sign in to comment.