Skip to content

Commit

Permalink
Release 2.1.0-rc.1 to develop (#115)
Browse files Browse the repository at this point in the history
### Changes

- Add Changelog
- Update the hardcoded version
- Update the the helm charts
  • Loading branch information
marcelosalloum authored Jun 28, 2024
1 parent 4665136 commit d73d6c5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ name: Test and build

on:
push:
branches: [main]
branches:
- main
- develop
pull_request:
workflow_call: # allows this workflow to be called from another workflow

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install
Expand Down
32 changes: 26 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

> Place unreleased changes here.
## [2.1.0-rc.1](https://github.com/stellar/stellar-disbursement-platform-frontend/releases/tag/2.1.0-rc.1) ([diff](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/2.0.0...2.1.0-rc.1))

Release of the Stellar Disbursement Platform v2.0.0. This release introduces the
option to set different distribution account signers per tenant, as well as
Circle support, so the tenant can choose to run their payments through the
Circle API rather than directly on the Stellar network.

This version is only compatible with the
[stellar/stellar-disbursement-platform-backend] version `2.1.0-rc.1`.

### Added

- Implement support for Circle distribution accounts
[#114](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/114).
- When the account is of type Circle and it's status is not Active, a banner
id displayed to direct the user through the Circle setup.
- A new flow was added to allow the user to set up the Circle account.
- When the account is of type Circle, balances are fetched from the SDP
backend rather than the Stellar network.

## [2.0.0](https://github.com/stellar/stellar-disbursement-platform-frontend/releases/tag/2.0.0)

### Added
Expand Down Expand Up @@ -37,10 +57,10 @@ Each organization has its own set of users, receivers, disbursements, etc.
- Ability for users to add/update verification info for receivers.
[#78](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/78)

## [1.1.2](https://github.com/stellar/stellar-disbursement-platform-backend/compare/1.1.1...1.1.2)
## [1.1.2](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/1.1.1...1.1.2)

Attention, this version is compatible with the backend version
[1.1.6](https://github.com/stellar/stellar-disbursement-platform-backend/releases/tag/1.1.6).
[1.1.6](https://github.com/stellar/stellar-disbursement-platform-frontend/releases/tag/1.1.6).

### Added

Expand All @@ -62,14 +82,14 @@ Attention, this version is compatible with the backend version
identify the account that needs to be funded.
[#80](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/80)

## [1.1.1](https://github.com/stellar/stellar-disbursement-platform-backend/compare/1.1.0...1.1.1)
## [1.1.1](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/1.1.0...1.1.1)

### Fixed

- Retry payment button was not showing up on failed payments
[#72](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/72).

## [1.1.0](https://github.com/stellar/stellar-disbursement-platform-backend/compare/1.0.1...1.1.0)
## [1.1.0](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/1.0.1...1.1.0)

### Added

Expand Down Expand Up @@ -126,7 +146,7 @@ Attention, this version is compatible with the backend version
- Fix table overflow crop
[#55](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/55)

## [1.0.0](https://github.com/stellar/stellar-disbursement-platform-backend/compare/1.0.0-rc2...1.0.0)
## [1.0.0](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/1.0.0-rc2...1.0.0)

### Added

Expand Down Expand Up @@ -155,7 +175,7 @@ Attention, this version is compatible with the backend version
- Add warning message about Distribution account funds
[#11](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/11)

## [1.0.0.rc2](https://github.com/stellar/stellar-disbursement-platform-backend/compare/1.0.0-rc1...1.0.0-rc2)
## [1.0.0.rc2](https://github.com/stellar/stellar-disbursement-platform-frontend/compare/1.0.0-rc1...1.0.0-rc2)

### Added

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": "stellar-disbursement-platform-frontend",
"version": "2.0.0",
"version": "2.1.0-rc.1",
"license": "Apache-2.0",
"engines": {
"node": ">=18.x"
Expand Down

0 comments on commit d73d6c5

Please sign in to comment.