Skip to content
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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Changelog

## Unreleased
## 1.5.0 - 2026-08-11

- Restored continuous integration across supported Java versions.
- Removed embedded WooCommerce credentials from integration tests.
- Updated maintained dependencies and build plugins.
- Updated maintained dependencies and build plugins, including security fixes
for Jackson.
- Normalized store URLs with a trailing slash, with regression coverage and
attribution to the original community contribution.
- Updated project ownership, security, and contribution documentation.
- Added a manually gated Central Publisher Portal release workflow.

## 1.4 - 2019-11-05

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A small Java wrapper for the WooCommerce REST API, originally released in 2016 a
<dependency>
<groupId>com.icoderman</groupId>
<artifactId>wc-api-java</artifactId>
<version>1.4</version>
<version>1.5.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.icoderman</groupId>
<artifactId>wc-api-java</artifactId>
<version>1.5-SNAPSHOT</version>
<version>1.5.0</version>
<packaging>jar</packaging>

<name>WooCommerce API Java Wrapper</name>
Expand All @@ -31,7 +31,7 @@
<connection>scm:git:https://github.com/omandryk/wc-api-java.git</connection>
<developerConnection>scm:git:ssh://git@github.com/omandryk/wc-api-java.git</developerConnection>
<url>https://github.com/omandryk/wc-api-java</url>
<tag>HEAD</tag>
<tag>v1.5.0</tag>
</scm>

<properties>
Expand Down
Loading