diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e228fb..1fc7c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ +## v0.38.5 (2024-03-20) + +### Fix + +* **chezmoi:** Add conditional check for setting empty values ([`a727cd1`](https://github.com/entelecheia/dotfiles/commit/a727cd1d7b2e07d9661f020adc794ab03f27dd12)) + ## v0.38.4 (2024-03-20) ### Fix diff --git a/chezmoi/.chezmoi.yaml.tmpl b/chezmoi/.chezmoi.yaml.tmpl index 98341dd..e0edfea 100644 --- a/chezmoi/.chezmoi.yaml.tmpl +++ b/chezmoi/.chezmoi.yaml.tmpl @@ -691,18 +691,6 @@ # {{- writeToStdout "❎ Docker container registry not set\n" -}} # {{- end -}} -# {{- if and $interactive ($minimum | not) -}} -# {{- $question := "❔ What is your dockerfiles repository URL (ex: https://github.com/entelecheia/dockerfiles.git)" -}} -# {{- $answer := "" -}} -# {{- if $dockerfiles_repo -}} -# {{- $answer = promptString $question $dockerfiles_repo -}} -# {{- else -}} -# {{- $answer = promptString $question -}} -# {{- end -}} -# {{- $dockerfiles_repo = $answer -}} -# {{- end -}} -# {{- writeToStdout (printf "✅ dockerfiles repo set as '%s'\n" $dockerfiles_repo) -}} - # {{- if $workspace_existing -}} # {{- if $wsl -}} # {{- if eq $winhome_existing $winhome -}} diff --git a/chezmoi/.chezmoidata.yaml b/chezmoi/.chezmoidata.yaml index 725ec92..c91314b 100644 --- a/chezmoi/.chezmoidata.yaml +++ b/chezmoi/.chezmoidata.yaml @@ -1,4 +1,4 @@ -DOTFILES_VERSION: 0.38.4 +DOTFILES_VERSION: 0.38.5 packages: - name: 1password-cli apt: true diff --git a/pyproject.toml b/pyproject.toml index 5d44472..ee97246 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dotfiles" -version = "0.38.4" +version = "0.38.5" description = "Easily manage and synchronize your dotfiles across multiple environments with the Dotfiles project, streamlining your development setup and CI/CD pipeline." authors = ["Young Joon Lee "] license = "MIT"