@iamsergio/qttest-utils 1.1.0 → 1.1.2

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.
package/CONTRIBUTING.md CHANGED
@@ -27,11 +27,12 @@ cargo install git-cliff
27
27
 
28
28
  (Replace 1.0.0 with actual version used)
29
29
 
30
+ export NEW_VERSION=v1.0.0
30
31
  - Make sure Github Actions CI is green
31
32
  - Optional: To get a version compatible with semver, run `git cliff --bump`
32
33
  - Increase version in package.json and package-lock.json.
33
- - git cliff --tag 1.0.0 > Changelog
34
+ - git cliff --tag $NEW_VERSION > Changelog
34
35
  - git add Changelog package.json package-lock.json && git commit -m "chore: bump version"
35
- - git tag -a v1.0.0 -m 'v1.0.0'
36
- - git push --tags
36
+ - git tag -a ${NEW_VERSION} -m "${NEW_VERSION}"
37
+ - git push && git push --tags
37
38
  - npm publish
package/Changelog CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
 
4
4
 
5
+ ## [1.1.2] - 2024-04-07
6
+
7
+ ### ⚙️ Miscellaneous Tasks
8
+
9
+ - Add more logging
10
+
11
+ ## [1.1.1] - 2024-04-07
12
+
13
+ ### 🐛 Bug Fixes
14
+
15
+ - Verbose logging not appearing in vscode
16
+
17
+ ### ⚙️ Miscellaneous Tasks
18
+
19
+ - Improve CONTRIBUTING.md
20
+ - Bump version
21
+
5
22
  ## [1.1.0] - 2024-04-07
6
23
 
7
24
  ### 🚀 Features
@@ -27,6 +44,7 @@
27
44
  - Make npm install be verose
28
45
  - Trying fixing the path for tsc on macos
29
46
  - Update packages
47
+ - Bump version
30
48
 
31
49
  ## [1.0.0] - 2024-04-04
32
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamsergio/qttest-utils",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "API for listing QtTest executables from a build directory and which individual test slots each executable contains. Useful for a Text Explorer VSCode extension.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,4 +23,4 @@
23
23
  "ts-node": "^10.9.1",
24
24
  "typescript": "^5.4.4"
25
25
  }
26
- }
26
+ }