Skip to content

Commit

Permalink
release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
aewering committed Jan 4, 2024
1 parent ae16984 commit 77b5e7f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.4.3

- Fixed code that did not compile for map<int64, string>, since Protobuf.Types.Int64 is not comparable. Uses the (Int, Int) representation now instead.

## 3.4.0

- Added support for JSON encoder generation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protoc-gen-elm",
"version": "3.4.2",
"version": "3.4.3",
"description": "Elm protoc plugin",
"keywords": [
"elm",
Expand Down
2 changes: 1 addition & 1 deletion tests/elm_protoc_plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 77b5e7f

Please sign in to comment.