@subql/types-ethereum 2.1.1-0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -6
  2. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -1,13 +1,19 @@
1
1
  # Changelog
2
-
3
2
  All notable changes to this project will be documented in this file.
4
3
 
5
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
6
 
8
- All logs must start with the format: [x.y.z] - yyyy-mm-dd
9
-
10
7
  ## [Unreleased]
8
+
9
+ ## [2.2.1] - 2023-05-22
10
+ ### Fixed
11
+ - Previous release failed
12
+
13
+ ## [2.2.0] - 2023-05-22
14
+ ### Fixed
15
+ - Add chainId to global (#77)
16
+
11
17
  ## [2.1.0] - 2023-05-11
12
18
  ### Added
13
19
  - `bulkRemove` to the store
@@ -22,6 +28,7 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
22
28
  - Remove `count` method from the store (#51)
23
29
 
24
30
  ## [1.0.0] - 2023-04-03
31
+ ### Changed
25
32
  - Release
26
33
 
27
34
  ## [0.2.2] - 2023-01-23
@@ -29,15 +36,27 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
29
36
  - Add `count` to `Store` interface (#1480)
30
37
 
31
38
  ## [0.2.1] - 2022-11-18
39
+ ### Fixed
32
40
  - Re-release 0.2.1
33
41
 
34
42
  ## [0.2.0] - 2022-12-06
43
+ ### Added
35
44
  - Support for `bypassBlocks` (#1435)
36
45
 
37
46
  ## [0.2.0] - 2022-11-17
38
-
47
+ ### Changed
39
48
  - Sync with main sdk (#14)
40
49
 
41
50
  ## [0.1.0] - 2022-10-31
42
-
43
- Initial release
51
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/types/v2.2.1...HEAD
52
+ [2.2.1]: https://github.com/subquery/subql-ethereum/compare/types/v2.2.0...types/v2.2.1
53
+ [2.2.0]: https://github.com/subquery/subql-ethereum/compare/types/v2.1.0...types/v2.2.0
54
+ [2.1.0]: https://github.com/subquery/subql-ethereum/compare/types/2.0.0v.../types/v2.1.0
55
+ [2.0.0]: https://github.com/subquery/subql-ethereum/compare/types/1.0.1v.../types/v2.0.0
56
+ [1.0.1]: https://github.com/subquery/subql-ethereum/compare/types/1.0.0v.../types/v1.0.1
57
+ [1.0.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.2v.../types/v1.0.0
58
+ [0.2.2]: https://github.com/subquery/subql-ethereum/compare/types/0.2.1v.../types/v0.2.2
59
+ [0.2.1]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.1
60
+ [0.2.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.0
61
+ [0.2.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.0
62
+ [0.1.0]: https://github.com/subquery/subql-ethereum/tag/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/types-ethereum",
3
- "version": "2.1.1-0",
3
+ "version": "2.2.1",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/subquery/subql",
6
6
  "repository": "github:subquery/subql",
@@ -17,6 +17,5 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "@ethersproject/abstract-provider": "^5.6.1"
20
- },
21
- "stableVersion": "2.1.0"
20
+ }
22
21
  }