Skip to content

Commit

Permalink
feat: add separator between version and date
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli authored and Daniel Ortega committed Oct 10, 2023
1 parent f9a7a9a commit 3ceb14d
Show file tree
Hide file tree
Showing 8 changed files with 9,207 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:

- name: Publish package
if: ${{ ! contains(github.ref_name, '-rc.') }}
run: yarn publish --access public
run: yarn npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish release candidate
if: ${{ contains(github.ref_name, '-rc.') }}
run: yarn publish --access public --tag rc
run: yarn npm publish --access public --tag rc
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
27 changes: 14 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] 2023-10-04
## [1.1.0] - 2023-10-04

### Added

Expand All @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `Authority`: Removed deployment files and script.
- `History`: Removed deployment files and script.
- Updated yarn version to 3.6.3 (berry)

### Removed

Expand Down Expand Up @@ -73,13 +74,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed input size limit in `InputBox` contract
- Fixed vouchers and notices proofs in `host-runner`

## [0.9.1] 2023-06-14
## [0.9.1] - 2023-06-14

### Changed

- Fixed dispatcher to not finish empty epoch

## [0.9.0] 2023-05-19
## [0.9.0] - 2023-05-19

### Added

Expand Down Expand Up @@ -123,14 +124,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed headers from inputs added by trusted permissionless contracts like portals and relayers
- Remove polling-based indexer

## [0.8.2] 2023-01-04
## [0.8.2] - 2023-01-04

### Changed

- Fixed proxy start up after restart
- Changed `sm_pending_inputs_max_retries` default to 600 (retries while polling server-manager for pending inputs)

## [0.8.1] 2022-12-02
## [0.8.1] - 2022-12-02

### Added

Expand All @@ -140,7 +141,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fixed epoch finalization when running rollups in host mode

## [0.8.0] 2022-11-29
## [0.8.0] - 2022-11-29

### Added

Expand All @@ -156,21 +157,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Modified the dispatcher to produce rollups events instead of managing the server-manager.
- Bumped grpc-interfaces to version 0.9.0

## [0.7.0] 2022-11-02
## [0.7.0] - 2022-11-02

### Changed

- Increase machine deadline
- Minor documentation updates

## [0.6.1] 2022-10-04
## [0.6.1] - 2022-10-04

### Changed

- Fix dispatcher's configuration for server-manager threads
- Improve documentation of GraphQL API

## [0.6.0] 2022-09-13
## [0.6.0] - 2022-09-13

### Added

Expand All @@ -181,7 +182,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Send inspect-server logs to stdout instead of stderr

## [0.5.0] 2022-08-17
## [0.5.0] - 2022-08-17

### Added

Expand All @@ -194,13 +195,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove hardhat-rollups
- Fix indexer to store proofs only when epoch is finished

## [0.4.0] 2022-07-04
## [0.4.0] - 2022-07-04

### Changed

- Update dependencies to latest emulator SDK with improved exception handling (grpc-interfaces 0.8)

## [0.3.0] 2022-06-14
## [0.3.0] - 2022-06-14

### Added

Expand Down Expand Up @@ -229,7 +230,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.2.0] 2022-04-28
## [0.2.0] - 2022-04-28

### Added

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you are interested in taking a look at the off-chain part, please, head over

## Dependencies

- [Yarn](https://classic.yarnpkg.com/en/docs/install)
- [Yarn](https://yarnpkg.com/getting-started/install)
- [Forge](https://book.getfoundry.sh/getting-started/installation)
- [Docker](https://docs.docker.com/get-docker/)

Expand All @@ -30,7 +30,7 @@ In order to properly initialize them, please, run the following command.
git submodule update --init --recursive
```

This repository uses [Yarn](https://classic.yarnpkg.com/en/docs/install) to manage JavaScript dependencies.
This repository uses [Yarn](https://yarnpkg.com/getting-started/install) to manage JavaScript dependencies.
In order to install them, please, run the following commands.

```sh
Expand Down Expand Up @@ -88,7 +88,7 @@ graph TD
ERC1155BatchPortal[ERC-1155 Batch Transfer Portal]:::core
DAppAddressRelay[DApp Address Relay]:::core
Consensus:::external
ERC20[Any ERC-20 token]:::external
ERC721[Any ERC-721 token]:::external
ERC1155[Any ERC-1155 token]:::external
Expand Down
9 changes: 9 additions & 0 deletions onchain/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@ node_modules
.DS_Store
cache
out

# Follows https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored and not using Zero-Installs feature
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
874 changes: 874 additions & 0 deletions onchain/.yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions onchain/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.4.cjs
3 changes: 2 additions & 1 deletion onchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
],
"devDependencies": {
"prettier": "^3"
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 3ceb14d

Please sign in to comment.