Skip to content

Commit 75eaf36

Browse files
committed
chore(release): v4.17.1
1 parent feee0db commit 75eaf36

7 files changed

Lines changed: 21 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [4.17.1](https://github.com/bastean/codexgo/compare/v4.17.0...v4.17.1) (2025-09-07)
4+
5+
### Chores
6+
7+
- **deps:** upgrade ([d893e7c](https://github.com/bastean/codexgo/commit/d893e7c1ad335e1260a03b2d0c493fd31de7a884))
8+
9+
### Documentation
10+
11+
- **readme:** add missing extensions in devcontainer ([feee0db](https://github.com/bastean/codexgo/commit/feee0db161c55d23abdbe13a991d90690d8517e0))
12+
13+
### Tests
14+
15+
- **unit:** add suite for ascii ([2403019](https://github.com/bastean/codexgo/commit/2403019aaee414e25287192826292bb4bf4092ad))
16+
317
## [4.17.0](https://github.com/bastean/codexgo/compare/v4.16.2...v4.17.0) (2025-08-24)
418

519
### Chores

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ codexgo -h
8888
_____________ ______ /_____ ____ __ __ ____/__ __ \
8989
_ ___/_ __ \_ __ / _ _ \__ |/_/ _ / __ _ / / /
9090
/ /__ / /_/ // /_/ / / __/__> < / /_/ / / /_/ /
91-
\___/ \____/ \__,_/ \___/ /_/|_| \____/ \____/ v4.17.0
91+
\___/ \____/ \__,_/ \___/ /_/|_| \____/ \____/ v4.17.1
9292
9393
Example CRUD project applying Hexagonal Architecture, DDD, EDA, CQRS, BDD, CI, and more... in Go.
9494

internal/app/cli/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
const (
1616
App = "codexgo"
17-
Version = "4.17.0"
17+
Version = "4.17.1"
1818
)
1919

2020
var (

internal/app/cli/cli_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ func (s *CLITestSuite) SetupSuite() {
1919

2020
func (s *CLITestSuite) TestSentinel() {
2121
s.Equal("codexgo", cli.App)
22-
s.Equal("4.17.0", cli.Version)
22+
s.Equal("4.17.1", cli.Version)
2323
}
2424

2525
func (s *CLITestSuite) TestHelp() {
2626
expected := ` _________ ________________
2727
_____________ ______ /_____ ____ __ __ ____/__ __ \
2828
_ ___/_ __ \_ __ / _ _ \__ |/_/ _ / __ _ / / /
2929
/ /__ / /_/ // /_/ / / __/__> < / /_/ / / /_/ /
30-
\___/ \____/ \__,_/ \___/ /_/|_| \____/ \____/ v4.17.0
30+
\___/ \____/ \__,_/ \___/ /_/|_| \____/ \____/ v4.17.1
3131
3232
Example CRUD project applying Hexagonal Architecture, DDD, EDA, CQRS, BDD, CI, and more... in Go.
3333

internal/app/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "server",
4-
"version": "4.17.0",
4+
"version": "4.17.1",
55
"devDependencies": {
66
"fomantic-ui": "2.10.0-beta.48",
77
"jquery": "3.7.1"

internal/app/server/static/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codexGO",
33
"short_name": "codexGO",
4-
"version": "4.17.0",
4+
"version": "4.17.1",
55
"description": "codexGO",
66
"author": "Bastean <bastean@pm.me>",
77
"homepage_url": "https://github.com/bastean/codexgo#readme",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "codexgo",
4-
"version": "4.17.0",
4+
"version": "4.17.1",
55
"description": "codexGO",
66
"author": "Bastean <bastean@pm.me>",
77
"license": "MIT",

0 commit comments

Comments
 (0)