Skip to content

Commit

Permalink
Release version
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.jboss.org/repos/hibernate/search/trunk@14024 1b8cb986-b30d-0410-93ca-fae66ebed9b2
  • Loading branch information
emmanuelbernard committed Sep 23, 2007
1 parent 8a6a285 commit d8f317e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- Name of project and version, used to create filenames -->
<property name="Name" value="Hibernate Search"/>
<property name="name" value="hibernate-search"/>
<property name="version" value="3.0.0.CR1.HSEARCH-116"/>
<property name="version" value="3.0.0.GA"/>
<property name="javadoc.packagenames" value="org.hibernate.search.*"/>
<property name="copy.test" value="true"/>
<property name="javac.source" value="1.5"/>
Expand Down
21 changes: 21 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Hibernate Search Changelog
==========================

3.0.0.GA (23-09-2007)
---------------------

** Bug
* [HSEARCH-116] - FullTextEntityManager acessing getDelegate() in the constructor leads to NPE in JBoss AS + Seam
* [HSEARCH-117] - FullTextEntityManagerImpl and others should implement Serializable

** Deprecation
* [HSEARCH-122] - Remove query.setIndexProjection (replaced by query.setProjection)

** Improvement
* [HSEARCH-118] - Add ClassBridges (plural) functionality

** New Feature
* [HSEARCH-81] - Create a @ClassBridge Annotation (John Griffin)


** Task
* [HSEARCH-98] - Add a Getting started section to the reference documentation


3.0.0.CR1 (4-09-2007)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Hibernate Search
==================================================
Version: 3.0.0.CR1, 4.09.2007
Version: 3.0.0.GA, 23.09.2007

Description
-----------
Expand Down
2 changes: 1 addition & 1 deletion src/java/org/hibernate/search/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @author Emmanuel Bernard
*/
public class Version {
public static final String VERSION = "3.0.0.CR1"; // + new Date();
public static final String VERSION = "3.0.0.GA"; // + new Date();
private static Log log = LogFactory.getLog( Version.class );

static {
Expand Down

0 comments on commit d8f317e

Please sign in to comment.