Skip to content

Commit 093271a

Browse files
committed
*: Update changelogs ahead of release
1 parent 5520613 commit 093271a

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

packages/indexer-agent/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0] - 2021-04-19
10+
### Changed
11+
- Update to latest common-ts
12+
13+
### Fixed
14+
- Correctly determine the previous epoch when generating POIs
15+
916
## [0.12.0] - 2021-04-06
1017
### Changed
1118
- Update common-ts and ethers
@@ -235,7 +242,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
235242
### Changed
236243
- Update @graphprotocol/common-ts to 0.2.2
237244

238-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.12.0...HEAD
245+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.13.0...HEAD
246+
[0.13.0]: https://github.com/graphprotocol/indexer/compare/v0.12.0...v0.13.0
239247
[0.12.0]: https://github.com/graphprotocol/indexer/compare/v0.11.0...v0.12.0
240248
[0.11.0]: https://github.com/graphprotocol/indexer/compare/v0.10.0...v0.11.0
241249
[0.10.0]: https://github.com/graphprotocol/indexer/compare/v0.9.5...v0.10.0

packages/indexer-cli/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0] - 2021-04-19
10+
### Changed
11+
- Update to latest common-ts
12+
913
## [0.12.0] - 2021-04-06
1014
### Changed
1115
- Update common-ts and ethers
@@ -99,7 +103,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99103
### Changed
100104
- Update @graphprotocol/common-ts to 0.2.2
101105

102-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.12.0...HEAD
106+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.13.0...HEAD
107+
[0.13.0]: https://github.com/graphprotocol/indexer/compare/v0.12.0...v0.13.0
103108
[0.12.0]: https://github.com/graphprotocol/indexer/compare/v0.11.0...v0.12.0
104109
[0.11.0]: https://github.com/graphprotocol/indexer/compare/v0.10.0...v0.11.0
105110
[0.10.0]: https://github.com/graphprotocol/indexer/compare/v0.9.5...v0.10.0

packages/indexer-common/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0] - 2021-04-19
10+
### Changed
11+
- Update to latest common-ts
12+
913
## [0.12.0] - 2021-04-06
1014
### Changed
1115
- Update common-ts, vector and ethers
@@ -107,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107111
### Added
108112
- Move indexing rule management here from `@graphprotocol/common-ts`
109113

110-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.12.0...HEAD
114+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.13.0...HEAD
115+
[0.13.0]: https://github.com/graphprotocol/indexer/compare/v0.12.0...v0.13.0
111116
[0.12.0]: https://github.com/graphprotocol/indexer/compare/v0.11.0...v0.12.0
112117
[0.11.0]: https://github.com/graphprotocol/indexer/compare/v0.10.0...v0.11.0
113118
[0.10.0]: https://github.com/graphprotocol/indexer/compare/v0.9.5...v0.10.0
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## 0.13.0 - 2021-04-19
10+
### Added
11+
- Add package for native attestation signing and receipt signature verification
12+
13+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.13.0...HEAD

packages/indexer-service/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0] - 2021-04-19
10+
### Added
11+
- Add `--alloation-syncing-interval` option (default: 120s, previous 10s)
12+
- Use `indexer-native` package for native attestation signing and signature verification
13+
14+
### Changed
15+
- Update to latest common-ts
16+
917
## [0.12.0] - 2021-04-06
1018
### Changed
1119
- Update common-ts, vector and ethers
@@ -185,7 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
185193
### Changed
186194
- Update @graphprotocol/common-ts to 0.2.2
187195

188-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.12.0...HEAD
196+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.13.0...HEAD
197+
[0.13.0]: https://github.com/graphprotocol/indexer/compare/v0.12.0...v0.13.0
189198
[0.12.0]: https://github.com/graphprotocol/indexer/compare/v0.11.0...v0.12.0
190199
[0.11.0]: https://github.com/graphprotocol/indexer/compare/v0.10.0...v0.11.0
191200
[0.10.0]: https://github.com/graphprotocol/indexer/compare/v0.9.5...v0.10.0

0 commit comments

Comments
 (0)