Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changelog update #20

Merged
merged 3 commits into from
Feb 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## UNRELEASED

## 6.2.11-rc-1 (2017-02-06)

### Added

- Build: Support for Gradle (still relying on ant build.xml), see [#5](https://github.com/belgattitude/php-java-bridge/issues/5) and [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Build: New tasks added in gradle 'jacocoTestReport', see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Test: Resurrect existing unit tests
- Test: test and coverage using Jacoco added, see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Artifacts available on Maven central under io.soluble.pjb group. [#19](https://github.com/belgattitude/php-java-bridge/issues/19)
- Build: Gradle support (still relying on ant build.xml for generating old php client - genAll and cleanGen tasks), see [#5](https://github.com/belgattitude/php-java-bridge/issues/5) and [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Build: Jacoco coverage with 'jacocoTestReport' task, see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Test: Resurrect existing server unit tests
- Doc: trick to build when default interpreter is php 7+, see [#4](https://github.com/belgattitude/php-java-bridge/issues/4)
- License: MIT license where applicable, see [#10](https://github.com/belgattitude/php-java-bridge/issues/10)

### Removed

- Removed obsolete javax.script sources
- Removed obsolete javax.script sources.
- Removed unsupported directory [#11](https://github.com/belgattitude/php-java-bridge/issues/11)
- Removed PHPDebugger [#16](https://github.com/belgattitude/php-java-bridge/issues/16)
- Removed PHPDebugger [#16](https://github.com/belgattitude/php-java-bridge/issues/16) due to license issues.

### Changed

- Moved namespace `php.java` into `io.soluble.pjb`, see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- **[possible BC-break]** Moved namespace `php.java` into `io.soluble.pjb`, see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)
- Project directory structure _mavenized_, sources moved from './server' to './src/main/java', see P/R [#9](https://github.com/belgattitude/php-java-bridge/pull/9)


Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ apply plugin: 'maven-publish'

group = "io.soluble.pjb"
archivesBaseName = 'php-java-bridge'
version = "6.2.11-rc-1"
//version = "6.2.11-rc-1"
version = "6.2.11-SNAPSHOT"
description = "PHPJavaBridge server (soluble fork)"

ext {
Expand Down