Prepare release.

See gh-45.
This commit is contained in:
Mark Paluch
2017-01-17 10:20:35 +01:00
parent 53416a19bb
commit a114fa244d
3 changed files with 78 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>org.springframework.vault</groupId>
@@ -83,13 +84,69 @@
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>milestone</id>
<distributionManagement>
<repository>
<id>repo.spring.io</id>
<name>Spring Milestone Repository</name>
<url>http://repo.spring.io/libs-milestone-local</url>
</repository>
</distributionManagement>
</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>
</profiles>
</project>

View File

@@ -1,6 +1,22 @@
Spring Vault Changelog
=============================
Changes in version 1.0.0 M2
-----------------------------------------
* Review documentation #12
* Documentation "Registering a Vault instance using Java based metadata" vs "Instantiating VaultTemplate" #22
* Fix missing plugin versions #32
* User Guide and JavaDocs 404 #34
* Upgrade to Spring 4.3.4 #35
* VaultResponse is incompatible with Vault 0.6.2 (missing warnings in VaultResponseSupport) #36
* Upgrade to Vault 0.6.3 #38
* Add support for OkHttp3 #39
* Flatten hierarchical JSON objects into property paths #40
* Upgrade to Spring 4.3.5 #41
* Upgrade to Vault 0.6.4 #42
* Upgrade to OkHttp 3.5.0 #43
* Upgrade test dependencies #44
Changes in version 1.0.0 M1
-----------------------------------------
* Provide transit backend support #1

View File

@@ -1,4 +1,4 @@
Spring Vault 1.0.0 M1
Spring Vault 1.0.0 M2
Copyright (c) [2016] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").