aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES6
-rw-r--r--layman/cli.py2
-rw-r--r--layman/version.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index c64007b..14bf02c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
CHANGES
-------
+Version 2.4.2 - Release 2017-02-01
+==================================
+ - Bug 587474 Fix a missed eprefix placeholder for repos_conf setting.
+ - Bug 539336 Adds exception handling
+ - Fix commit 63808ef00f94 mis-applied 'sourcefile' attribute changes
+
Version 2.4.1 - Release 2016-05-06
==================================
- adds sourcefile to plug-in modules, fixes bug #582154
diff --git a/layman/cli.py b/layman/cli.py
index 86d6e70..870255f 100644
--- a/layman/cli.py
+++ b/layman/cli.py
@@ -164,7 +164,7 @@ class Main(object):
# Make fetching the overlay list a default action
if not 'nofetch' in self.config.keys():
- # Actions that implicitely call the fetch operation before
+ # Actions that implicitly call the fetch operation before
fetch_actions = ['sync', 'sync_all', 'list']
for i in fetch_actions:
if i in self.config.keys():
diff --git a/layman/version.py b/layman/version.py
index c6d20cd..402a339 100644
--- a/layman/version.py
+++ b/layman/version.py
@@ -24,7 +24,7 @@ from __future__ import unicode_literals
__version__ = "$Id: version.py 309 2007-04-09 16:23:38Z wrobel $"
-VERSION = '2.4.1'
+VERSION = '2.4.2'
if __name__ == '__main__':
print(VERSION)