From 77b5e7f9bc7ba4bba64c70f025db4cbde72fd643 Mon Sep 17 00:00:00 2001 From: aewering Date: Thu, 4 Jan 2024 23:29:37 +0100 Subject: [PATCH] release new version --- CHANGELOG.md | 4 ++++ package.json | 2 +- tests/elm_protoc_plugin.test.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d5dd6a..ba882b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.4.3 + +- Fixed code that did not compile for map, since Protobuf.Types.Int64 is not comparable. Uses the (Int, Int) representation now instead. + ## 3.4.0 - Added support for JSON encoder generation diff --git a/package.json b/package.json index 23eb279..0e2e8fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "protoc-gen-elm", - "version": "3.4.2", + "version": "3.4.3", "description": "Elm protoc plugin", "keywords": [ "elm", diff --git a/tests/elm_protoc_plugin.test.ts b/tests/elm_protoc_plugin.test.ts index e02ad12..668dac2 100644 --- a/tests/elm_protoc_plugin.test.ts +++ b/tests/elm_protoc_plugin.test.ts @@ -282,7 +282,7 @@ describe("protoc-gen-elm", () => { describe("maps", () => { it("generates a valid elm file for maps", async () => { - await compileElm(["Proto/Map.elm", "Proto/Int64Map.elm"]); + await compileElm(["Proto/Map.elm"]); }); it("generates working code for maps", async () => {