Skip to content

Commit 1cbda6c

Browse files
committed
Update Docker image name and build scripts
[chore] updated todos
1 parent 359e7d9 commit 1cbda6c

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ tests/.tmp
99
.tmp
1010
dist
1111
.DS_Store
12+
.backup.env

build/docker/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

33
VERSION="$1"
4-
IMAGE="giv-cli/giv"
4+
IMAGE="itlackey/giv"
55

66
docker build -f build/docker/Dockerfile \
77
-t "${IMAGE}:$VERSION" \

build/docker/publish.sh

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#! /bin/bash
22

33
VERSION="$1"
4-
IMAGE="giv-cli/giv"
4+
IMAGE="itlackey/giv"
5+
56

67
# 2) Login to Docker Hub
78
echo "$DOCKER_HUB_PASSWORD" | docker login \

docs/todos.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
- FEATURE: improve section updating (ie merge lists, update headers), improve date and header management
2222
- FEATURE: include [SAMPLE] token to provide current or previous section in the prompt
2323
- FEATURE: markdown lint and fixing before output
24-
- FEATURE: option to review and update before saving
24+
- FEATURE: option to manually review and update before saving
2525
- FEATURE: option to use LLM to automatically review before final output
26+
- reviews format and attempts to correct it or sends for a retry
2627
- DOCUMENTATION: Add example of using custom prompt and rules with document subcommand
2728
- DOCUMENTATION: Add example of adding a new document type subcommand
2829
- DOCUMENTATION: Add example of sourcing giv functions in other scripts
@@ -32,9 +33,17 @@
3233
- long commit histories and summaries
3334
- ENHANCEMENT: allow user to specify (regex?) patterns for matching sections, headers, versions, todos
3435
- ENHANCEMENT: improve prompt with more specific todo rules. ie. BUG->FIXED changes go in ### Fixed sub section
35-
36+
- FEATURE: Add roadmap document type
37+
- FEATURE: chat with TODOs
38+
- FEATURE: Improve rules and examples handling
39+
- --rules-file
40+
- --example-file - if "auto" attempt to extract section from output-file
41+
-
3642
## Known Issues
3743

44+
- BUG: Announcement needs more project specific context for things like homepage, name, date
45+
- BUG: Changelog including front matter and incorrect header
46+
- BUG: Release notes has incorrect date
3847
- BUG: Docker permissions issues
3948
- BUG: Flatpak does not build
4049
- BUG: Snap does not build

0 commit comments

Comments
 (0)