diff options
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | snakemake-mode.el | 2 |
2 files changed, 6 insertions, 7 deletions
@@ -1,23 +1,22 @@ NEWS -- history of user-visible changes -*- mode: org; -*- -* v0.4.0 (unreleased) +* v0.4.0 ** New features - New library snakemake.el provides a popup interface for running Snakemake from Emacs. +- New command ~snakemake-graph~ displays the graph of dependencies for + a rule. (Thanks to Endre Bakken Stovner for the idea and initial + implementation.) + - ".snakefile" has been added as a suffix for Snakemake files. - Anonymous rule blocks are now supported. - The 'wrapper' keyword is now recognized. -- New command ~snakemake-graph~ displays the graph of dependencies for - a rule. (Thanks to Endre Bakken Stovner for the idea and initial - implementation.) - - * v0.3.0 ** New features diff --git a/snakemake-mode.el b/snakemake-mode.el index 0d231a7..587d577 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -5,7 +5,7 @@ ;; Author: Kyle Meyer <kyle@kyleam.com> ;; URL: https://github.com/kyleam/snakemake-mode ;; Keywords: tools -;; Version: 0.3.0 +;; Version: 0.4.0 ;; Package-Requires: ((emacs "24") (cl-lib "0.5") (magit-popup "2.4.0")) ;; This program is free software; you can redistribute it and/or modify |