Skip to content

Commit a5acf7f

Browse files
committed
Updates for v2.3.3
1 parent 83ee630 commit a5acf7f

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

content/_index.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title = "Stacked Git"
55
> Stacked Git, **StGit** for short, is an application for managing Git
66
> commits as a stack of patches.
77
>
8-
> With a *patch stack* workflow, multiple patches can be developed
8+
> With a _patch stack_ workflow, multiple patches can be developed
99
> concurrently and efficiently, with each patch focused on a single
1010
> concern, resulting in both a clean Git commit history and improved
1111
> productivity.
@@ -23,7 +23,7 @@ safely manage a stack of patches.
2323
[`delete`](man/stg-delete), and [`clean`](man/stg-clean).
2424
- See information about the stack or individual patches using
2525
[`series`](man/stg-series) and [`show`](man/stg-show).
26-
- Migrate patches to regular commits and *vice versa* using
26+
- Migrate patches to regular commits and _vice versa_ using
2727
[`commit`](man/stg-commit) and [`uncommit`](man/stg-uncommit).
2828

2929
Patch-stack management operations are performed using Git commands and
@@ -35,6 +35,10 @@ StGit is licensed under the GNU General Public License, version 2.
3535

3636
## News
3737

38+
### 2023-10-04: [StGit v2.3.3][v2.3.3] has been released.
39+
40+
Fixes to zsh completions along with MacOS portability improvements.
41+
3842
### 2023-08-19: [StGit v2.3.2][v2.3.2] has been released.
3943

4044
This release contains some improvements to `stg uncommit` along with
@@ -62,11 +66,13 @@ bzip2-rs crate which allows for static linking when not using the
6266

6367
This release also contains a few more bugfixes to `stg import`.
6468

69+
[v2.3.3]: https://github.com/stacked-git/stgit/releases/tag/v2.3.3
6570
[v2.3.2]: https://github.com/stacked-git/stgit/releases/tag/v2.3.2
6671
[v2.3.1]: https://github.com/stacked-git/stgit/releases/tag/v2.3.1
6772
[v2.3.0]: https://github.com/stacked-git/stgit/releases/tag/v2.3.0
6873

6974
{{< details "More StGit News..." >}}
75+
7076
### 2023-05-15: [StGit v2.2.4][v2.2.4] has been released.
7177

7278
StGit regained the ability to upgrade from stacks created by very old
@@ -155,7 +161,6 @@ git2. This has a big impact on the latency of StGit commands.
155161

156162
See the [changelog](changelog/) for more details on this release.
157163

158-
159164
### 2023-01-16: Blog Post: [How I Keep Using Stacked Git at $WORK][stgit-at-work2]
160165

161166
[This blog post][stgit-at-work2] from lthms describes their
@@ -227,9 +232,9 @@ some highlights include:
227232
more terse output. Stack modifying operations (`push`, `pop`,
228233
`refresh`, etc.) use color and sigils to display their outcomes.
229234
- `stg email format` and `stg email send` replace `stg mail`. The new
230-
commands lean on the battle-hardened `git format-patch` and `git
231-
send-email` commands, making StGit's email capabilities more robust
232-
and more standard.
235+
commands lean on the battle-hardened `git format-patch` and
236+
`git send-email` commands, making StGit's email capabilities more
237+
robust and more standard.
233238
- StGit aliases now behave like Git aliases.
234239
- `stg refresh` gains the `-r`/`--refresh` option, which allows a new
235240
patch to be created and record changes with one command.
@@ -251,7 +256,6 @@ See the [extension in the VSCode marketplace][marketplace] or checkout
251256

252257
[vscode-stgit]: https://github.com/srydh/vscode-stgit
253258
[marketplace]: https://marketplace.visualstudio.com/items?itemName=samuelrydh.stgit
254-
255259
[stgit-at-work2]: https://soap.coffee/~lthms/opinions/StackedGit2.html
256260
[stgit-at-work]: https://soap.coffee/~lthms/opinions/StackedGit.html
257261
[v2.2.4]: https://github.com/stacked-git/stgit/releases/tag/v2.2.4
@@ -273,7 +277,7 @@ See the [extension in the VSCode marketplace][marketplace] or checkout
273277

274278
## Why Stacked Git?
275279

276-
The *stack of patches* model is a natural way to maintain a clean Git
280+
The _stack of patches_ model is a natural way to maintain a clean Git
277281
history while working on several changes concurrently. A stack-oriented
278282
workflow using StGit can compliment, or even replace, many Git workflows
279283
involving rebase, branches, amended commits, and stashes.

content/changelog/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ title = 'StGit Changelog'
44

55
# Changelog
66

7+
## 2.3.3 2023-10-04
8+
9+
### Fixed
10+
- fix(zsh): -S option for float, import, and sync
11+
- build: avoid non-portable install options
12+
- test: improved test script portability
13+
14+
### Changed
15+
- update dependencies
16+
17+
718
## [2.3.2] 2023-08-19
819

920
### Fixed

0 commit comments

Comments
 (0)