Prepare release.

See gh-72.
This commit is contained in:
Mark Paluch
2017-04-10 10:14:26 +02:00
parent 16f9994955
commit bc766e7377
3 changed files with 13 additions and 42 deletions

39
pom.xml
View File

@@ -360,45 +360,6 @@
</profile>
<profile>
<id>central</id>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Profile to be run on the CI server, JARs JavaDocs -->

View File

@@ -83,9 +83,9 @@
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>

View File

@@ -1,6 +1,16 @@
Spring Vault Changelog
=============================
Changes in version 1.0.0 GA
-----------------------------------------
* keystore file not created when $JAVA_HOME is not found #62
* Allow to create requested secret from mode and path #64
* Update to Spring-Next build profile to 4.3.8 #65
* Upgrade to Vault 0.7 #66
* Null-properties cause NullPointerException #69
* Vault seal operation fails #70
* Release 1.0.0 GA #72
Changes in version 1.0.0 RC1
-----------------------------------------
* Consider adding a EnvironmentVaultConfiguration #30