From d87917df2c67960b36fbfdbec4efad93a0732e6b Mon Sep 17 00:00:00 2001 From: Matthew Whitehead Date: Thu, 3 Oct 2024 13:16:26 +0100 Subject: [PATCH 1/2] Update manifest and release date Signed-off-by: Matthew Whitehead --- doc-site/docs/releasenotes/index.md | 5 +++-- manifest.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc-site/docs/releasenotes/index.md b/doc-site/docs/releasenotes/index.md index 486bc5285..9e8eddb49 100644 --- a/doc-site/docs/releasenotes/index.md +++ b/doc-site/docs/releasenotes/index.md @@ -4,12 +4,13 @@ title: Release Notes [Full release notes](https://github.com/hyperledger/firefly/releases) -## [v1.3.2 - Sept 13, 2024](https://github.com/hyperledger/firefly/releases/tag/v1.3.2) +## [v1.3.2 - Oct 3, 2024](https://github.com/hyperledger/firefly/releases/tag/v1.3.2) What's New: - Support for JSON numbers larger than `2^53-1` - See [FFBigInt](../reference/types/simpletypes.md#ffbigint) + - See [FFBigInt](../reference/types/simpletypes.md#ffbigint) for detailed explanation + - Support added to FireFly core, including the UI, FireFly Transaction Manager, and FireFly EVMConnect - Ability to install FireFly CLI with Brew for MacOS users See [Brew](../gettingstarted/firefly_cli.md#install-via-homebrew-macOS) - Miscellaneous bug fixes and minor improvements diff --git a/manifest.json b/manifest.json index 87460ec8b..a6285d4da 100644 --- a/manifest.json +++ b/manifest.json @@ -59,6 +59,6 @@ "release": "v1.3.1" }, "cli": { - "tag": "v1.3.2-rc.2" + "tag": "v1.3.2" } } From 3b28ab29b4d35c072ceadd23650b4e3b9b938b9d Mon Sep 17 00:00:00 2001 From: Matthew Whitehead Date: Thu, 3 Oct 2024 14:00:04 +0100 Subject: [PATCH 2/2] Update curl Signed-off-by: Matthew Whitehead --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eca7e012b..c5632b71b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ARG GIT_REF RUN apk add make=4.4.1-r2 \ gcc=13.2.1_git20231014-r0 \ build-base=0.5-r3 \ - curl=8.9.1-r0 \ + curl=8.9.1-r1 \ git=2.43.5-r0 WORKDIR /firefly RUN chgrp -R 0 /firefly \ @@ -76,7 +76,7 @@ ARG UI_RELEASE RUN apk add --update --no-cache \ sqlite=3.44.2-r0 \ postgresql16-client=16.4-r0 \ - curl=8.9.1-r0 \ + curl=8.9.1-r1 \ jq=1.7.1-r0 WORKDIR /firefly RUN chgrp -R 0 /firefly \