Skip to content

Commit

Permalink
version bump v1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Apr 24, 2024
1 parent 112c3e8 commit 1401075
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/content/openvasp/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
10 changes: 5 additions & 5 deletions pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1401075

Please sign in to comment.