along with this plugin; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+mit-scheme-pucked-devops 0.6 - Matt Birkholz, 2018-03-17
+========================================================
+
+Replace git-tag-create-options variable with tag-options procedure.
+Limit bindings in the (devops) environment to the documented
+procedures. Include documentation lint (missing @deffns) in
+devops:status, and produce just the core status report when the
+argument is "core".
+
mit-scheme-pucked-devops 0.5 - Matt Birkholz, 2018-02-18
========================================================
dnl Process this file with autoconf to produce a configure script.
AC_INIT([MIT/GNU Scheme Pucked Developer Operations plugin],
- [0.5],
+ [0.6],
[matt@birchwood-abbey.net],
[mit-scheme-pucked-devops])
AC_CONFIG_SRCDIR([devops.pkg])
+mit-scheme-pucked-devops (0.6) birchwood; urgency=low
+
+ * Replace git-tag-create-options variable with tag-options
+ procedure. Limit bindings in the (devops) environment to the
+ documented procedures. Include documentation lint (missing
+ @deffns) in devops:status, and produce just the core status report
+ when the argument is "core".
+
+ -- Matt Birkholz <matt@birchwood-abbey.net> Sat, 17 Mar 2018 00:00:00 -0000
+
mit-scheme-pucked-devops (0.5) birchwood; urgency=low
* Support debugging builds with a devops:make procedure.
(define (devops:status #!optional name)
(load "devops/config.scm" (->environment '(devops)))
- (if (default-object? name)
- (status)
- (plugin-status (->plugin name) (dirt))))
+ (cond ((default-object? name)
+ (status))
+ ((string=? "core" name)
+ (core-status (get-core-version) (dirt)))
+ (else
+ (plugin-status (->plugin name) (dirt)))))
(define (dirt)
(shell-lines "git status --porcelain --untracked-files=no"))
(with-loader-base-uri (system-library-uri "devops/")
(lambda ()
(load-package-set "devops")))
-(add-subsystem-identification! "DevOps" '(0 5))
\ No newline at end of file
+(add-subsystem-identification! "DevOps" '(0 6))
\ No newline at end of file