Skip to content

Commit

Permalink
Prepare release v26.0.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.4.0
  • Loading branch information
luke-hill committed Aug 15, 2024
1 parent a8c4419 commit a7950ed
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 16 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [26.0.0] - 2024-08-15
### Added
- [Dotnet] Added support classes aligned with what is provided for the Java implementation (https://github.com/cucumber/messages/pull/233 [clrudolphi](https://github.com/clrudolphi))

### Changed
- **Internal breaking change** The code generation has undergone a large refactor (No visible changes expected). All new code
generation logic is now contained in [/codegen](./codegen) ([#228](https://github.com/cucumber/messages/pull/228) [luke-hill](https://github.com/luke-hill))
generation logic is now contained in [/codegen](./codegen) ([#228](https://github.com/cucumber/messages/pull/228) [luke-hill](https://github.com/luke-hill))
- [Dotnet] Rewritten to align with the code generation techniques used for the other languages (https://github.com/cucumber/messages/pull/233 [clrudolphi](https://github.com/clrudolphi))
- [Dotnet] Upgraded from .NET 5 to .NET 8. Dropped .NET Framework 4.x as a target while retaining .NET Standard 2.0 as the primary target framework (https://github.com/cucumber/messages/pull/233 [clrudolphi](https://github.com/clrudolphi))

Expand Down Expand Up @@ -536,7 +538,8 @@ aggregated status.
### Added
- Protobuf messages for Go, Java, JavaScript, TypeScript and Ruby

[Unreleased]: https://github.com/cucumber/messages/compare/v25.0.1...HEAD
[Unreleased]: https://github.com/cucumber/messages/compare/v26.0.0...HEAD
[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
[24.1.0]: https://github.com/cucumber/messages/compare/v24.0.1...v24.1.0
Expand Down
6 changes: 3 additions & 3 deletions dotnet/Cucumber.Messages/Cucumber.Messages.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
Expand All @@ -10,7 +10,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>25.0.1</VersionNumber>
<VersionNumber>26.0.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand All @@ -19,7 +19,7 @@
<Product>Cucumber.Messages</Product>
<PackageId>Cucumber.Messages</PackageId>
<Authors>Cucumber Ltd, TechTalk</Authors>
<Copyright>Copyright © Cucumber Ltd, TechTalk</Copyright>
<Copyright>Copyright &#xA9; Cucumber Ltd, TechTalk</Copyright>
<Description>JSON schema-based messages for Cucumber's inter-process communication</Description>
<PackageTags>cucumber-messages cucumber reqnroll specflow gherkin</PackageTags>
<PackageProjectUrl>https://github.com/cucumber/messages</PackageProjectUrl>
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: "25.0.1",
version: "26.0.0",
name: "CucumberMessages",
description: description(),
package: package(),
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cucumber/messages/go/v25
module github.com/cucumber/messages/go/v26

require (
github.com/gofrs/uuid v4.4.0+incompatible
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>25.0.2-SNAPSHOT</version>
<version>26.0.0</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>1718293851</project.build.outputTimestamp>
<project.build.outputTimestamp>1723710181</project.build.outputTimestamp>
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/messages.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/messages.git</developerConnection>
<url>git://github.com/cucumber/messages.git</url>
<tag>HEAD</tag>
<tag>v26.0.0</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": "25.0.1",
"version": "26.0.0",
"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 = '25.0.1'
export const version = '26.0.0'
2 changes: 1 addition & 1 deletion perl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.0.1
26.0.0
2 changes: 1 addition & 1 deletion ruby/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.0.1
26.0.0

0 comments on commit a7950ed

Please sign in to comment.