@iamsergio/qttest-utils 1.1.0 → 1.1.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.
- package/CONTRIBUTING.md +4 -3
- package/Changelog +11 -0
- package/package.json +2 -2
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
|
|
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
|
|
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,16 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
## [1.1.1] - 2024-04-07
|
|
6
|
+
|
|
7
|
+
### 🐛 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Verbose logging not appearing in vscode
|
|
10
|
+
|
|
11
|
+
### ⚙️ Miscellaneous Tasks
|
|
12
|
+
|
|
13
|
+
- Improve CONTRIBUTING.md
|
|
14
|
+
|
|
5
15
|
## [1.1.0] - 2024-04-07
|
|
6
16
|
|
|
7
17
|
### 🚀 Features
|
|
@@ -27,6 +37,7 @@
|
|
|
27
37
|
- Make npm install be verose
|
|
28
38
|
- Trying fixing the path for tsc on macos
|
|
29
39
|
- Update packages
|
|
40
|
+
- Bump version
|
|
30
41
|
|
|
31
42
|
## [1.0.0] - 2024-04-04
|
|
32
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iamsergio/qttest-utils",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
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
|
+
}
|