Skip to content

Commit

Permalink
2.7.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Feb 26, 2016
1 parent 467ca7f commit b8a944e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'signing'
apply plugin: 'maven'

group = 'org.seasar.doma'
version = '2.7.0-SNAPSHOT'
version = '2.7.0'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
ext.encoding = 'UTF-8'
sourceCompatibility = jdkVersion
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
}
dependencies {
compile "org.seasar.doma:doma:2.7.0-SNAPSHOT"
compile "org.seasar.doma:doma:2.7.0"
}
.. note::
Expand Down
12 changes: 12 additions & 0 deletions docs/sources/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
リリースノート
==============

v2.7.0: 2016-02-27
======================

* `GH125 <https://github.com/domaframework/doma/pull/125>`_
SelectBuilder のデフォルトの FetchType を Lazy に設定
* `GH124 <https://github.com/domaframework/doma/pull/124>`_
間違った警告メッセージを修正
* `GH122 <https://github.com/domaframework/doma/pull/122>`_
検索用メソッドの戻り値の型を Stream とすることを認めた
* `GH121 <https://github.com/domaframework/doma/pull/121>`_
includeの説明が間違っていたのを修正

v2.6.2: 2016-02-11
======================

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/seasar/doma/internal/Artifact.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class Artifact {

private static final String NAME = "Doma";

private static final String VERSION = "2.7.0-SNAPSHOT";
private static final String VERSION = "2.7.0";

public static String getName() {
return NAME;
Expand Down

0 comments on commit b8a944e

Please sign in to comment.