From 451a5de682103a02cce48ba043f238e2bcf1a79e Mon Sep 17 00:00:00 2001 From: "Andrew E. Bruno" Date: Wed, 12 Sep 2018 11:50:29 -0400 Subject: [PATCH] Bump version --- ChangeLog.rst | 7 +++++++ main.go | 2 +- mokey.spec | 6 +++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index f469e05..5e2b513 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -2,6 +2,12 @@ ChangeLog =============================================================================== +`v0.5.2`_ (2018-09-12) +---------------------- + +- Add option to disable user signup +- Add new command for re-sending verify emails + `v0.5.1`_ (2018-09-12) ---------------------- @@ -64,3 +70,4 @@ ChangeLog .. _v0.0.5: https://github.com/ubccr/mokey/releases/tag/v0.0.5 .. _v0.0.6: https://github.com/ubccr/mokey/releases/tag/v0.0.6 .. _v0.5.1: https://github.com/ubccr/mokey/releases/tag/v0.5.1 +.. _v0.5.2: https://github.com/ubccr/mokey/releases/tag/v0.5.2 diff --git a/main.go b/main.go index 13683eb..96c6c49 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ func main() { app.Name = "mokey" app.Authors = []cli.Author{cli.Author{Name: "Andrew E. Bruno", Email: "aebruno2@buffalo.edu"}} app.Usage = "mokey" - app.Version = "0.5.1" + app.Version = "0.5.2" app.Flags = []cli.Flag{ &cli.StringFlag{Name: "conf,c", Usage: "Path to conf file"}, &cli.BoolFlag{Name: "debug,d", Usage: "Print debug messages"}, diff --git a/mokey.spec b/mokey.spec index a4fdc39..bcc16a0 100644 --- a/mokey.spec +++ b/mokey.spec @@ -3,7 +3,7 @@ Summary: FreeIPA self-service account managment tool Name: mokey -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} License: BSD Group: Applications/Internet @@ -72,6 +72,10 @@ rm -rf %{buildroot} %attr(644,root,root) %{_usr}/lib/systemd/system/%{name}.service %changelog +* Wed Sep 12 2018 Andrew E. Bruno 0.5.2-1 +- New Features + - Add option to disable user signup + - Add new command for re-sending verify emails * Wed Sep 12 2018 Andrew E. Bruno 0.5.1-1 - New Features - Major code refactor to use echo framework