From 140107550efb631252e34c343ae0458de7cd6d2e Mon Sep 17 00:00:00 2001 From: Benjamin Bengfort Date: Wed, 24 Apr 2024 11:16:46 -0500 Subject: [PATCH] version bump v1.0.0-beta.1 --- docs/content/openvasp/_index.en.md | 2 +- pkg/version.go | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/content/openvasp/_index.en.md b/docs/content/openvasp/_index.en.md index f88a5e1..23ba9b8 100644 --- a/docs/content/openvasp/_index.en.md +++ b/docs/content/openvasp/_index.en.md @@ -16,7 +16,7 @@ For more information on the TRP protocol, please refer to the [TRP Documentation The TRP workflow uses HTTPS `POST` requests with JSON payloads to facilitate information exchange. The initial request endpoint is defined with an LNURL or Travel Address endpoint that the beneficiary must request from their VASP and send to the originator. Subsequent request endpoints are defined with callback URLs in the request itself. HTTP error codes and JSON payloads are used to communicate success or failure back to the counterparty. -In principle, then, a TRISA node must add an HTTP service to its node to accept and respond to these POST requests. TRISA has implemented [handlers and middleware](https://pkg.go.dev/github.com/trisacrypto/trisa@v0.4.0/pkg/openvasp) in the `trisacrypto/trisa` go package to make it easier to add a service to your TRISA node and to translate TRISA data structures into TRP data structures. +In principle, then, a TRISA node must add an HTTP service to its node to accept and respond to these POST requests. TRISA has implemented [handlers and middleware](https://pkg.go.dev/github.com/trisacrypto/trisa@v1.0.0/pkg/openvasp) in the `trisacrypto/trisa` go package to make it easier to add a service to your TRISA node and to translate TRISA data structures into TRP data structures. ### Next Steps: diff --git a/pkg/version.go b/pkg/version.go index ea494a3..e7cd40c 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -7,11 +7,11 @@ import "fmt" // Version component constants for the current build. const ( - VersionMajor = 0 - VersionMinor = 5 - VersionPatch = 1 - VersionReleaseLevel = "v1beta1" - VersionReleaseNumber = 11 + VersionMajor = 1 + VersionMinor = 0 + VersionPatch = 0 + VersionReleaseLevel = "beta" + VersionReleaseNumber = 1 ) // Version returns the semantic version for the current build.