gaztec 1.2.0 → 1.3.0

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.
@@ -16,5 +16,7 @@ jobs:
16
16
  - name: Install dependencies
17
17
  run: pnpm install --frozen-lockfile
18
18
 
19
+ - uses: ./
20
+
19
21
  - name: Run tests
20
22
  run: pnpm test
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.2.0"
2
+ ".": "1.3.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0](https://github.com/nemi-fi/gaztec/compare/v1.2.0...v1.3.0) (2026-03-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * Remove gaztec-install from package.json bin section ([95e1127](https://github.com/nemi-fi/gaztec/commit/95e112732c68b88f2f9d40bd49b2c0ce2907451c))
9
+ * Self-test github action ([32161e3](https://github.com/nemi-fi/gaztec/commit/32161e352296017c0892ba8649361d4f9b806911))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Properly reference action.yml ([8e177a2](https://github.com/nemi-fi/gaztec/commit/8e177a2e9d5c6b4948c61e6afcaee0538666db5e))
15
+
3
16
  ## [1.2.0](https://github.com/nemi-fi/gaztec/compare/v1.1.0...v1.2.0) (2026-03-04)
4
17
 
5
18
 
package/README.md CHANGED
@@ -69,7 +69,7 @@ jobs:
69
69
 
70
70
  # gaztec action requires node.js and installed dependencies to run
71
71
  - name: Setup gaztec
72
- uses: nemi-fi/gaztec@v1.2.0
72
+ uses: nemi-fi/gaztec@v1.3.0
73
73
 
74
74
  - name: Compile Aztec contracts
75
75
  run: npx gaztec compile
package/gaztec-install CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaztec",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "description": "Aztec version manager",
6
6
  "repository": {
@@ -8,7 +8,6 @@
8
8
  "url": "https://github.com/nemi-fi/gaztec.git"
9
9
  },
10
10
  "bin": {
11
- "gaztec-install": "./gaztec-install",
12
11
  "gaztec": "./gaztec"
13
12
  },
14
13
  "scripts": {
@@ -8,12 +8,7 @@
8
8
  ".": {
9
9
  "release-type": "node",
10
10
  "include-component-in-tag": false,
11
- "extra-files": [
12
- {
13
- "type": "generic",
14
- "path": "README.md"
15
- }
16
- ]
11
+ "extra-files": [{ "type": "generic", "path": "README.md" }]
17
12
  }
18
13
  },
19
14
  "plugins": ["sentence-case"]