Skip to content

Commit a05f401

Browse files
committed
changelog: v0.4.3 (#70)
Signed-off-by: Tyler Smalley <[email protected]>
1 parent 4475685 commit a05f401

File tree

2 files changed

+54
-7
lines changed

2 files changed

+54
-7
lines changed

CHANGELOG.md

Lines changed: 41 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,45 @@
1-
# Change Log
1+
# Changelog
22

3-
All notable changes to the "vscode-tailscale" extension will be documented in this file.
3+
All notable changes to this project will be documented in this file.
44

5-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to an [Odd-Even Versioning](https://en.wikipedia.org/wiki/Software_versioning#Odd-numbered_versions_for_development_releases) scheme. Odd-numbered versions are used for development and pre-release updates, while even-numbered versions are used for stable or public releases.
66

7-
## [Unreleased]
7+
## [0.4.3] - 2023-06-21
88

9-
- Initial release
9+
### Fixed
10+
11+
- Use sudo-prompt to re-run tsrelay in Linux (#64)
12+
- src/tailscale/cli: fix go path for development mode (#67)
13+
- Return manual resolution when access is denied to LocalBackend (#60)
14+
- Output server details as json (#37)
15+
16+
### Changed
17+
18+
- Upgrade dependencies: react, typescript, webpack, eslint, prettier, postcss, tailwindcss, lint-staged (#38, #39, #40, #41, #43, #44, #46, #47, #50, #53)
19+
20+
## [0.4.2] - 2023-06-13
21+
22+
### Added
23+
24+
- serve/simple: Notice for Linux users (#62)
25+
26+
## [0.4.1] - 2023-06-13
27+
28+
### Added
29+
30+
- Show error message for expired node key (#1)
31+
- Provide information on service underlying a proxy (#2)
32+
- readme: Added notice for Linux users (#61)
33+
34+
### Changed
35+
36+
- portdisco: switch to upstream portlist package (#10)
37+
- Upgrade dependencies: webpack, webpack-cli, webpack-dev-server, css-loader, postcss-loader, style-loader, ts-loader (#34)
38+
39+
Initial public release
40+
41+
## [0.4.0] - 2023-05-31
42+
43+
### Added
44+
45+
- Simple view for adding a Funnel

CONTRIBUTING.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ To backport a PR, add the `auto-backport` label to a PR and a corresponding vers
7373

7474
## Release Process
7575

76-
### Create or update an existing release branch
77-
7876
#### To make a new minor release. (e.g., `0.2` ⇒ `0.4`)
7977

8078
From the `main` branch:
@@ -92,6 +90,17 @@ git checkout release-branch/0.2
9290
$ git cherry-pick -x <commit-id>
9391
```
9492
93+
### Update CHANGELOG.md
94+
95+
Using the diff between the latest tag, and the release branch after cherry picking
96+
97+
```
98+
git log --pretty=oneline v0.2.1..release-branch/v0.2
99+
```
100+
101+
Group changes by `Added`, `Changed`, `Deprecated`, `Removed`, `Fixed`, and `Security`
102+
Open a pull-request for the changes and cherry-pick into the release branch
103+
95104
### Update the version
96105
97106
```
@@ -100,6 +109,8 @@ $ git add package.json && git commit -sm 'version: v0.2.1'
100109
$ git tag -am "Relase 0.2.1" "v0.2.1"
101110
```
102111
112+
### Create or update an existing release branch
113+
103114
### Push the release branch and tag
104115
105116
```

0 commit comments

Comments
 (0)