From 74ce27081c0fd26bb2bcbd10332494a8426713df Mon Sep 17 00:00:00 2001 From: James Harton Date: Mon, 5 Feb 2024 15:51:08 +1300 Subject: [PATCH] chore: Update forgejo hostname. --- .drone.yml | 28 ++++++++++++++-------------- CHANGELOG.md | 4 ++-- README.md | 2 +- config/config.exs | 2 +- mix.exs | 2 +- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.drone.yml b/.drone.yml index f0fad00..238b987 100644 --- a/.drone.yml +++ b/.drone.yml @@ -49,7 +49,7 @@ steps: - .rebar3 - name: install dependencies - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest pull: "always" environment: MIX_ENV: test @@ -122,7 +122,7 @@ steps: - .rebar3 - name: mix compile - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -135,7 +135,7 @@ steps: - asdf mix compile --warnings-as-errors - name: mix test - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -148,7 +148,7 @@ steps: - asdf mix test - name: mix credo - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -161,7 +161,7 @@ steps: - asdf mix credo --strict - name: mix dialyzer - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -174,7 +174,7 @@ steps: - asdf mix dialyzer - name: mix hex.audit - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -187,7 +187,7 @@ steps: - asdf mix hex.audit - name: mix format - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -200,7 +200,7 @@ steps: - asdf mix format --check-formatted - name: mix deps.unlock - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -213,7 +213,7 @@ steps: - asdf mix deps.unlock --check-unused - name: mix doctor - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -226,7 +226,7 @@ steps: - asdf mix doctor --full - name: mix git_ops.check_message - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -240,7 +240,7 @@ steps: - asdf mix git_ops.check_message .last_commit_message - name: mix git_ops.release - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: branch: - main @@ -281,7 +281,7 @@ steps: - fi - name: build artifacts - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: event: - tag @@ -329,7 +329,7 @@ steps: settings: api_key: from_secret: DRONE_TOKEN - base_url: https://code.harton.nz + base_url: https://harton.dev files: artifacts/*.tar.gz checksum: sha256 title: tag_subject @@ -360,7 +360,7 @@ steps: - mc mirror --overwrite doc/ store/docs.harton.nz/$${DRONE_REPO} - name: hex release - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: event: - tag diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2dbbf..c7e3edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,10 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline -## [v3.0.0](https://code.harton.nz/james/heap/compare/v2.0.2...v3.0.0) (2023-01-16) +## [v3.0.0](https://harton.dev/james/heap/compare/v2.0.2...v3.0.0) (2023-01-16) ### Breaking Changes: - Relicense to HL3-FULL. -## [v2.0.2](https://code.harton.nz/james/heap/compare/v2.0.2...v2.0.2) (2020-12-28) +## [v2.0.2](https://harton.dev/james/heap/compare/v2.0.2...v2.0.2) (2020-12-28) diff --git a/README.md b/README.md index e1533d7..44a0d5a 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Full API documentation is available on (hexdocs.pm)[https://hexdocs.pm/heap] ## Contributing -1. Fork it ( https://code.harton.nz/repo/fork/50 ) +1. Fork it ( https://harton.dev/repo/fork/50 ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) diff --git a/config/config.exs b/config/config.exs index bbc7fd2..c801104 100644 --- a/config/config.exs +++ b/config/config.exs @@ -3,7 +3,7 @@ import Config config :git_ops, mix_project: Mix.Project.get!(), changelog_file: "CHANGELOG.md", - repository_url: "https://code.harton.nz/james/heap", + repository_url: "https://harton.dev/james/heap", manage_mix_version?: true, manage_readme_version: "README.md", version_tag_prefix: "v" diff --git a/mix.exs b/mix.exs index 19ae10e..78b0c76 100644 --- a/mix.exs +++ b/mix.exs @@ -32,7 +32,7 @@ defmodule Heap.Mixfile do maintainers: ["James Harton "], licenses: ["HL3-FULL"], links: %{ - "Repository" => "https://code.harton.nz/james/heap", + "Repository" => "https://harton.dev/james/heap", "Docs" => "https://hexdocs.pm/heap" } ]