summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2015-02-14 13:22:21 -0800
committerGarrett Regier <garrettregier@gmail.com>2015-02-14 13:22:21 -0800
commitc1a8e219fa52fb9114a2b95efc246c8587c0918e (patch)
treeb161eaa60028dd33397bf50c44e1c8988b001df7
parent1242e95949952aa50962aa238a133aa2b80fdf0a (diff)
downloadlibpeas-c1a8e219fa52fb9114a2b95efc246c8587c0918e.tar.gz
Release 1.13.0libpeas-1.13.0
-rw-r--r--NEWS29
-rw-r--r--configure.ac4
2 files changed, 31 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 195eab3..aecb801 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+Overview of Changes in libpeas 1.13.0
+====================================
+
+* Removed support for Seed plugins
+* Added support for Lua 5.1 plugins using the LGI bindings
+* PeasEngine is now thread-safe
+* Added support for non-global plugins loaders
+* Load C plugins with local linkage
+* Use Python to implement the plugin loader's logic
+* Support Python plugins that define __all__
+* Use Lua to implement the plugin loader's logic
+* Prevent the accidental escaping of globals with Lua plugins
+* Misc bugfixes
+
+* Translation updates:
+ - Basque
+ - Brazilian Portuguese
+ - Czech
+ - Friulian
+ - Galician
+ - Hebrew
+ - Hungarian
+ - Japanese
+ - Kannada
+ - Nepali
+ - Russian
+ - Spanish
+ - Turkish
+
Overview of Changes in libpeas 1.12.1
====================================
diff --git a/configure.ac b/configure.ac
index e653301..ed6d782 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,8 +17,8 @@ AC_PREREQ(2.63.2)
# <mclasen> on the stable branch, interface age == micro
# <mclasen> on the unstable (ie master), interface age = 0
m4_define(peas_major_version, 1)
-m4_define(peas_minor_version, 12)
-m4_define(peas_micro_version, 2)
+m4_define(peas_minor_version, 13)
+m4_define(peas_micro_version, 0)
m4_define(peas_interface_age, 0)
m4_define(peas_binary_age, [m4_eval(100 * peas_minor_version + peas_micro_version)])