Skip to content

Commit

Permalink
docs: release notes for 42.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Jun 10, 2020
1 parent 2cad309 commit acd0724
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]
### Changed
- Reverted com.github.waffle:waffle-jna, org.osgi:org.osgi.core, org.osgi:org.osgi.enterprise dependencies to optional=true in Maven [PR 1797](https://github.com/pgjdbc/pgjdbc/pull/1797).

### Added

### Fixed

## [42.2.14] (2020-06-10)
### Changed
- Reverted com.github.waffle:waffle-jna, org.osgi:org.osgi.core, org.osgi:org.osgi.enterprise dependencies to optional=true in Maven [PR 1797](https://github.com/pgjdbc/pgjdbc/pull/1797).

## [42.2.13] (2020-06-04)

**Notable Changes**
Expand Down Expand Up @@ -365,4 +368,5 @@ thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc
[42.2.10]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.9...REL42.2.10
[42.2.11]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.10...REL42.2.11
[42.2.12]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.11...REL42.2.12
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.12...HEAD
[42.2.14]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.12...HEAD
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.14...HEAD
35 changes: 35 additions & 0 deletions docs/_posts/2020-06-10-42.2.14-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: PostgreSQL JDBC Driver 42.2.14 Released
date: 2020-06-10 17:08:52 +0300
categories:
- new_release
version: 42.2.14
---
**Notable changes**

### Changed
- Reverted com.github.waffle:waffle-jna, org.osgi:org.osgi.core, org.osgi:org.osgi.enterprise dependencies to optional=true in Maven [PR 1797](https://github.com/pgjdbc/pgjdbc/pull/1797).

<!--more-->

**Commits by author**

Dave Cramer (1):
* fix release notes for 42.2.13 [ecbc48ff](https://github.com/pgjdbc/pgjdbc/commit/ecbc48ff6ad293a2555465d4f7fb6a33a403af26)

Sehrope Sarkuni (1):
* Fix some changelog formatting and add link to XXE fix [PR 1794](https://github.com/pgjdbc/pgjdbc/pull/1794) [98a9bdca](https://github.com/pgjdbc/pgjdbc/commit/98a9bdcabf24a071e7db97bc2aab9c0f4a66e5d5)

Vladimir Sitnikov (2):

* chore: bump release-plugins from 1.65 to 1.70 [PR 1798](https://github.com/pgjdbc/pgjdbc/pull/1798) [826270d9](https://github.com/pgjdbc/pgjdbc/commit/826270d9825dff2f8e26954128e0d000a2c32328)
* chore: add Gradle features for sspi and osgi [PR 1795](https://github.com/pgjdbc/pgjdbc/pull/1795) [049d9fe6](https://github.com/pgjdbc/pgjdbc/commit/049d9fe633d4e58dd4b8bb1259345987b036839c)

<a name="contributors_{{ page.version }}"></a>
### Contributors to this release

We thank the following people for their contributions to this release.

[Dave Cramer](davec@postgresintl.com)
[Sehrope Sarkuni](https://github.com/sehrope)
[Vladimir Sitnikov](https://github.com/vlsi)
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kotlin.parallel.tasks.in.project=true
# This is version for PgJdbc itself
# Note: it should not include "-SNAPSHOT" as it is automatically added by build.gradle.kts
# Release version can be generated by using -Prelease or -Prc=<int> arguments
pgjdbc.version=42.2.13
pgjdbc.version=42.2.14

# The options below configures the use of local clone (e.g. testing development versions)
# You can pass un-comment it, or pass option -PlocalReleasePlugins, or -PlocalReleasePlugins=<path>
Expand Down
4 changes: 2 additions & 2 deletions release_notes.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash


CURRENT_VERSION=`mvn -B -N org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\['`
VERS=${CURRENT_VERSION/-SNAPSHOT}
CURRENT_VERSION=`grep pgjdbc.version gradle.properties`
VERS=${CURRENT_VERSION#"pgjdbc.version="}
DATE_YMD=$(date '+%Y-%m-%d')
RELEASE_FILE=$(find docs/_posts -name "*-$VERS-release.md" | head -n 1)
if [[ "x$RELEASE_FILE" == "x" ]]; then
Expand Down

0 comments on commit acd0724

Please sign in to comment.