update for 0.1.0 release VALA_0_1_0
authorJuerg Billeter <j@bitron.ch>
Mon, 9 Jul 2007 08:18:19 +0000 (08:18 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 9 Jul 2007 08:18:19 +0000 (08:18 +0000)
2007-07-09  Juerg Billeter  <j@bitron.ch>

* NEWS, README, configure.ac: update for 0.1.0 release

svn path=/trunk/; revision=335

ChangeLog
NEWS
README
configure.ac

index 3d3e0c7..0d5075b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-07-09  Jürg Billeter  <j@bitron.ch>
 
+       * NEWS, README, configure.ac: update for 0.1.0 release
+
+2007-07-09  Jürg Billeter  <j@bitron.ch>
+
        * vala/scanner.l, vala/parser.y, vala/valaarray.vala,
          vala/valaarraycreationexpression.vala, vala/valaattribute.vala,
          vala/valabaseaccess.vala, vala/valablock.vala,
diff --git a/NEWS b/NEWS
index 729414e..3b3ba8a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+Vala 0.1.0
+==========
+
+ * Add commandline options for running the C compiler and linker.
+ * Use # modifier for reference transfer in method parameters.
+ * Replace callback keyword by delegate.
+ * Improve and update GLib and GTK+ bindings.
+ * Add experimental GVFS binding.
+ * C89/MSVC portability fixes (Hans Breuer).
+ * Refactor code generator.
+ * Add experimental bindings generator.
+ * Many bug fixes.
+
 Vala 0.0.9
 ==========
 
diff --git a/README b/README
index 366e2db..aaf8fea 100644 (file)
--- a/README
+++ b/README
@@ -18,8 +18,8 @@ type system. Vala supports modern language features as the following:
        * Foreach
        * Lambda expressions
        * Type inference for local variables
-       * Generics [PLANNED]
-       * Non-null types [PARTIAL]
+       * Generics
+       * Non-null types
        * Assisted memory management
        * Exception handling [PLANNED]
 
@@ -27,8 +27,8 @@ Vala is designed to allow access to existing C libraries, especially
 GObject-based libraries, without the need for runtime bindings. Each to
 be used library requires a Vala API file at compile-time, containing the
 class and method declarations in Vala syntax. Vala currently comes with
-incomplete bindings for GLib and GTK+. It's planned to provide generated
-bindings for the full GNOME Platform at a later stage.
+bindings for GLib and GTK+. It's planned to provide generated bindings for
+the full GNOME Platform at a later stage.
 
 Using classes and methods written in Vala from an application written in
 C is not difficult. The Vala library only has to install the generated
index c5ccf4b..01fb1f7 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([vala], [0.0.10], [j@bitron.ch], [vala])
+AC_INIT([vala], [0.1.0], [j@bitron.ch], [vala])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS(config.h)
 AM_INIT_AUTOMAKE([dist-bzip2])