Skip to content

Commit

Permalink
Merge pull request #64 from brhahlen/dev
Browse files Browse the repository at this point in the history
Bugfix 3.3.1
  • Loading branch information
brhahlen authored Jan 29, 2024
2 parents f3daf98 + a1e7dc9 commit de8a949
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Version 3.3.1
## Bugfix
- New commands were not showing up in tab completion

# Version 3.3.0
## New featurs
- Introduced `clean` command to clean up temporary fils
## New features
- Introduced `clean` command to clean up temporary files
- Introduced `ips` command to show assigned IP's of containers

# Version 3.2.2
Expand Down
7 changes: 3 additions & 4 deletions build-files/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Version 3.3.0
## New featurs
- Introduced `clean` command to clean up temporary fils
- Introduced `ips` command to show assigned IP's of containers
# Version 3.3.1
## Bugfix
- New commands were not showing up in tab completion
2 changes: 1 addition & 1 deletion dc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -m

# VERSION
export DC_VERSION=v3.3.0
export DC_VERSION=v3.3.1

###### VARIABLES
if [[ -z "${DC_DIR}" ]]; then
Expand Down
6 changes: 3 additions & 3 deletions dc-completion
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) 2022 - 2023 Ben Hählen
# This is the completion file for `dc`
##############
# Version 3.3.0
# Version 3.3.1
##############
_dc_completions()
{
Expand All @@ -21,7 +21,7 @@ _dc_completions()
export DC_CMD="docker compose"

# Basic/main options that will be completed
OPTS="install up down restart-stack-hard restart-stack-soft logs-stack start stop restart pull logs network list help update version prune"
OPTS="install up down restart-stack-hard restart-stack-soft logs-stack start stop restart pull logs ips network clean list help update version prune"

# Based on the arguments, we can run functions
case "$cmd" in
Expand Down Expand Up @@ -69,7 +69,7 @@ _dc_completions()
COMPREPLY=( $(compgen -W "${SERVICES}" -- "${CUR}") )
return 0
;;
clean|install|ips|network|list|help|version)
install|ips|network|clean|list|help|version)
return
;;
prune)
Expand Down

0 comments on commit de8a949

Please sign in to comment.