Skip to content

Commit 0b387ca

Browse files
committed
updating changelog and bumping version to 1.0
1 parent 46a1219 commit 0b387ca

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

ActiveRecord.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300)
33
die('PHP ActiveRecord requires PHP 5.3 or higher');
44

5-
define('PHP_ACTIVERECORD_VERSION_ID','1.0rc1');
5+
define('PHP_ACTIVERECORD_VERSION_ID','1.0');
66

77
require 'lib/Singleton.php';
88
require 'lib/Config.php';

CHANGELOG

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
Version 1.0 - June 1, 2010
1+
Version 1.0 - June 27, 2010
2+
3+
- d2bed65 fixed an error with eager loading when no records exist
4+
- c225942 fixed set methods on DateTime objects to properly flag attributes as dirty
5+
- 3e26749 fixed a memory leak when using validations
6+
- 46a1219 fixed problem with some model functionality not working correctly after being deserialized
7+
- 3e26749 fixed validates_numericality_of to not ignore other options when only_integer is present and matches
8+
- 53ad5ec fixed ambiguous id error when finding by pk with a join option
9+
- 26e40f4 fixed conditions to accept DateTime values
10+
- 41e52fe changed serialization to serialize datetime fields as strings instead of the actual DateTime objects
11+
- dbee94b Model::transaction() now returns true if commit was successful otherwise false
12+
13+
Versio 1.0 RC1 - May 7, 2010
214

3-
- fixed validates_numericality_of to not ignore other options when only_integer is present and matches
4-
- fixed set methods on DateTime objects to properly flag attributes as dirty
5-
- fixed DateTime attributes to be serialized as strings
615
- support for Oracle
716
- support for PostgreSQL
817
- added delegators
@@ -14,4 +23,3 @@ Version 1.0 - June 1, 2010
1423
- added validates_uniqueness_of
1524
- added dynamic count_by
1625
- added eager loading
17-
- and many bug fixes

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PHP ActiveRecord #
22

3-
Version 1.0 RC1
3+
Version 1.0
44

55
by Kien La and Jacques Fuentes
66

0 commit comments

Comments
 (0)