Skip to content

Commit

Permalink
Merge pull request #129 from entelecheia/main
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia authored Mar 20, 2024
2 parents 958fd8f + 0cf1245 commit 8f96052
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<!--next-version-placeholder-->

## v0.38.3 (2024-03-19)

### Fix

* **chezmoi:** Add sha256sum for dotfiles-export and dotfiles-install-apt-pkgs ([`dd0631b`](https://github.com/entelecheia/dotfiles/commit/dd0631b1db0712f513b0cb78f538a8556c4204db))

## v0.38.2 (2024-03-19)

### Fix
Expand Down
8 changes: 4 additions & 4 deletions chezmoi/.chezmoi.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
# {{- $name = .name -}}
# {{- end -}}

# {{- $github_username := env "GITHUB_USERNAME" -}}
# {{- $github_username := or (env "GITHUB_USERNAME") "" -}}
# {{- if and (hasKey . "github") (hasKey .github "username") .github.username -}}
# {{- $github_username = .github.username -}}
# {{- end -}}

# {{- $docker_username := env "DOCKER_USERNAME" -}}
# {{- $docker_username := or (env "DOCKER_USERNAME") "" -}}
# {{- if and (hasKey . "docker") (hasKey .docker "username") .docker.username -}}
# {{- $docker_username = .docker.username -}}
# {{- end -}}
Expand All @@ -116,12 +116,12 @@
# {{- $ssh_algorithm = .ssh.algorithm -}}
# {{- end -}}

# {{- $github_token := env "GITHUB_TOKEN" -}}
# {{- $github_token := or (env "GITHUB_TOKEN") "" -}}
# {{- if and (hasKey . "github") (hasKey .github "token") .github.token -}}
# {{- $github_token = .github.token -}}
# {{- end -}}

# {{- $gpg_passphrase := env "GPG_PASSPHRASE" -}}
# {{- $gpg_passphrase := or (env "GPG_PASSPHRASE") "" -}}
# {{- if and (hasKey . "gnupg") (hasKey .gnupg "passphrase") -}}
# {{- $gpg_passphrase = .gnupg.passphrase -}}
# {{- end -}}
Expand Down
2 changes: 1 addition & 1 deletion chezmoi/.chezmoidata.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOTFILES_VERSION: 0.38.2
DOTFILES_VERSION: 0.38.3
packages:
- name: 1password-cli
apt: true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dotfiles"
version = "0.38.2"
version = "0.38.3"
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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 8f96052

Please sign in to comment.