RELEASES.og in og-0.7.0 vs RELEASES.og in og-0.8.0
- old
+ new
@@ -1,4 +1,39 @@
+== Version 0.8 was released on 12/01/2005.
+
+A snapshot of the latest code. Cool new features,
+many fixes and improvements in older features. Many thanks
+to Michael Neumann for giving intelligent suggestions
+and finding small bugs.
+
+Most notable additions:
+
+* New automatic validation system:
+
+ class User
+ prop_accessor :name, :password, String
+ validate_confirmation :password
+ validate_length :name, :range => 2..12
+ end
+
+ u = User.new(...)
+ unless u.valid?
+ p u.errors.on(:name)
+ p u.errors[:password]
+ end
+
+* No global variables in Og.
+
+* Recoded Og to allow for future support of multiple databases
+ (even on different RDBMS systems) on a single application.
+
+* cleaned up backend code.
+
+* More unit tests.
+
+* Supports Ruby 1.8.2
+
+
== Version 0.7 was released on 27/12/2004.
A snapshot of the latest code. Many fixes and new features result
in a more mature product. Many thanks to the ruby hackers that sent
suggestions and patches used in this release!