Skip to content

Commit

Permalink
Prepare release v26.0.1
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.5.0
  • Loading branch information
mpkorstanje committed Sep 22, 2024
1 parent 026ddc9 commit feac15d
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 15 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- [Dotnet] Fixed code generation for types that accept List<T> as parameters. Constructors were not properly handling null input. ([#249](https://github.com/cucumber/messages/pull/249) [clrudolphi])
- Moved contents of the description of the StepDefinitionIds field from the StepMatchArgumentsList field where it had been mistakenly placed. ([#252](https://github.com/cucumber/messages/pull/252) [clrudolphi])

## [26.0.1] - 2024-09-22
### Changed
- [Go] Switch to Google's UUID module ([#251](https://github.com/cucumber/messages/pull/251))

### Fixed
- [Dotnet] Fixed code generation for types that accept List as parameters. Constructors were not properly handling null input. ([#249](https://github.com/cucumber/messages/pull/249) [clrudolphi])
- Moved contents of the description of the StepDefinitionIds field from the StepMatchArgumentsList field where it had been mistakenly placed. ([#252](https://github.com/cucumber/messages/pull/252) [clrudolphi])

## [26.0.0] - 2024-08-15
### Added
- [Dotnet] Added support classes aligned with what is provided for the Java implementation ([#233](https://github.com/cucumber/messages/pull/233) [clrudolphi](https://github.com/clrudolphi))
Expand Down Expand Up @@ -544,7 +546,8 @@ aggregated status.
### Added
- Protobuf messages for Go, Java, JavaScript, TypeScript and Ruby

[Unreleased]: https://github.com/cucumber/messages/compare/v26.0.0...HEAD
[Unreleased]: https://github.com/cucumber/messages/compare/v26.0.1...HEAD
[26.0.1]: https://github.com/cucumber/messages/compare/v26.0.0...v26.0.1
[26.0.0]: https://github.com/cucumber/messages/compare/v25.0.1...v26.0.0
[25.0.1]: https://github.com/cucumber/messages/compare/v25.0.0...v25.0.1
[25.0.0]: https://github.com/cucumber/messages/compare/v24.1.0...v25.0.0
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Cucumber.Messages/Cucumber.Messages.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>26.0.0</VersionNumber>
<VersionNumber>26.0.1</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion elixir/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule CucumberMessages.MixProject do
def project do
[
app: :cucumber_messages,
version: "26.0.0",
version: "26.0.1",
name: "CucumberMessages",
description: description(),
package: package(),
Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@
<version>4.2.0</version>
</parent>
<artifactId>messages</artifactId>
<version>26.0.1-SNAPSHOT</version>
<version>26.0.1</version>
<packaging>jar</packaging>
<name>Cucumber Messages</name>
<description>JSON schema-based messages for Cucumber's inter-process communication</description>
<url>https://github.com/cucumber/messages</url>

<properties>
<project.Automatic-Module-Name>io.cucumber.messages</project.Automatic-Module-Name>
<project.build.outputTimestamp>1723710191</project.build.outputTimestamp>
<project.build.outputTimestamp>1727013764</project.build.outputTimestamp>
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/messages.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/messages.git</developerConnection>
<url>git://github.com/cucumber/messages.git</url>
<tag>HEAD</tag>
<tag>v26.0.1</tag>
</scm>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/messages",
"version": "26.0.0",
"version": "26.0.1",
"description": "JSON schema-based messages for Cucumber's inter-process communication",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is automatically generated using npm scripts
export const version = '26.0.0'
export const version = '26.0.1'
2 changes: 1 addition & 1 deletion perl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.0.0
26.0.1
2 changes: 1 addition & 1 deletion ruby/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.0.0
26.0.1

0 comments on commit feac15d

Please sign in to comment.