diff --git a/README.org b/README.org index 5058526..f58a687 100644 --- a/README.org +++ b/README.org @@ -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; }; })]; }; diff --git a/org-nix-shell.el b/org-nix-shell.el index 8580a83..ef534e2 100644 --- a/org-nix-shell.el +++ b/org-nix-shell.el @@ -4,7 +4,7 @@ ;; Maintainer: Anton Hakansson ;; 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 @@ -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.