Skip to content

Commit

Permalink
🔖 refactor and release v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TAKETODAY committed Feb 5, 2019
1 parent a369c57 commit 8b4e826
Show file tree
Hide file tree
Showing 149 changed files with 6,503 additions and 3,477 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ public @interface Props {
- [feat: add `@Conditional` feature](/src/test/java/test/context/profile/ProfileTest.java)
- [feat: add `@Profile` feature](/src/test/java/test/context/profile/ProfileTest.java)
- [feat: add `Environment` feature](/src/test/java/test/context/env/StandardEnvironmentTest.java)
- [feat: add `Environment` feature](/src/test/java/test/context/env/StandardEnvironmentTest.java)
- refactor: New Understanding Of IOC and coding

> examples
Expand Down Expand Up @@ -178,3 +177,27 @@ public void test_Conditional() {
}
```

> ## v2.1.1
- feat: add the destroy bean feature
- fix: #1 some singletons could not be initialized
- discard @PropertyResolver


> ## v2.1.2
- Use `BeanNameCreator` to create bean name
- `FactoryBean`
- fix: #2 handleDependency(): when handle dependency some bean definition has already exist
- fix: same name of bean when applyPropertyValues() cause exception
- feat: add initMethods feature
- feat: add destroyMethods feature
- feat: add `@MissingBean` feature










6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -549,14 +549,14 @@ to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

13. Use with the GNU Affero General Public License.
13. Use with the GNU General Public License.

Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
but the special requirements of the GNU General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

Expand Down
2 changes: 1 addition & 1 deletion lombok.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
lombok.accessors.chain = true
lombok.log.fieldName=log
lombok.log.fieldIsStatic = false
lombok.log.fieldIsStatic = true
34 changes: 21 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.taketoday</groupId>
<artifactId>today-context</artifactId>

<version>2.1.0.RELEASE</version>
<name>today-context-2.1.0.RELEASE</name>
<version>2.1.2.RELEASE</version>
<name>today-context-2.1.2.RELEASE</name>

<url>https://taketoday.cn</url>
<organization>
Expand All @@ -32,24 +31,33 @@

<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>

<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.23.4</version>
<scope>test</scope>
</dependency>

</dependencies>

Expand All @@ -59,7 +67,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version>
<version>3.8.0</version>
<configuration>
<source>8</source>
<target>8</target>
Expand All @@ -78,7 +86,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
Expand Down
Loading

0 comments on commit 8b4e826

Please sign in to comment.