summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--NEWS9
2 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 2c38d53..96d3c7b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,6 +7,7 @@ EXTRA_DIST = \
git-version-gen
dist-hook:
+ @if ! git diff --quiet; then echo "Uncommitted changes present; not releasing"; exit 1; fi
echo $(VERSION) > $(distdir)/.tarball-version
indent:
diff --git a/NEWS b/NEWS
index 969319e..3407124 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+Version 1.2.0
+~~~~~~~~~~~~~
+
+- Changes:
+ * Add helper code to deal with NSKeyedArchiver plist data
+
+- Bugfixes:
+ * socket: Make sure errno is always set on error, and always return a meaningful error code
+
Version 1.1.0
~~~~~~~~~~~~~