From c32dc0a22cc3ad2e2dc8591e9f18fce6f8157078 Mon Sep 17 00:00:00 2001 From: James Harton Date: Fri, 3 Nov 2023 10:32:44 +1300 Subject: [PATCH] chore: Move repo `bivouac/wayfarer` -> `james/wayfarer`. --- CHANGELOG.md | 6 +++--- README.md | 6 +++--- config/config.exs | 2 +- mix.exs | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07161f5..6b552e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline -## [v0.3.0](https://code.harton.nz/james/smokestack/compare/v0.2.0...v0.3.0) (2023-10-14) +## [v0.3.0](https://code.harton.nz/james/wayfarer/compare/v0.2.0...v0.3.0) (2023-10-14) @@ -18,7 +18,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline * Listener: Register listeners with scheme, address and port. -## [v0.2.0](https://code.harton.nz/james/smokestack/compare/v0.1.0...v0.2.0) (2023-10-14) +## [v0.2.0](https://code.harton.nz/james/wayfarer/compare/v0.1.0...v0.2.0) (2023-10-14) @@ -27,7 +27,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline * Add ability to start and stop HTTP listeners. (#1) -## [v0.1.0](https://code.harton.nz/james/smokestack/compare/v0.1.0...v0.1.0) (2023-10-13) +## [v0.1.0](https://code.harton.nz/james/wayfarer/compare/v0.1.0...v0.1.0) (2023-10-13) diff --git a/README.md b/README.md index 6cfe830..f57a69c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Wayfarer -[![Build Status](https://drone.harton.nz/api/badges/bivouac/wayfarer/status.svg?ref=refs/heads/main)](https://drone.harton.nz/bivouac/wayfarer) +[![Build Status](https://drone.harton.nz/api/badges/james/wayfarer/status.svg?ref=refs/heads/main)](https://drone.harton.nz/james/wayfarer) [![Hippocratic License HL3-FULL](https://img.shields.io/static/v1?label=Hippocratic%20License&message=HL3-FULL&labelColor=5e2751&color=bc8c3d)](https://firstdonoharm.dev/version/3/0/full.html) Wayfarer is a runtime-configurable HTTP reverse proxy using @@ -19,12 +19,12 @@ dependency in your app: ```elixir def deps do [ - {:wayfarer, git: "https://code.harton.nz/bivouac/wayfarer.git", tag: "v0.1.0"} + {:wayfarer, git: "https://code.harton.nz/james/wayfarer.git", tag: "v0.1.0"} ] end ``` -Documentation for `main` is always available on [my docs site](https://docs.harton.nz/bivouac/wayfarer/Wayfarer.html). +Documentation for `main` is always available on [my docs site](https://docs.harton.nz/james/wayfarer/Wayfarer.html). ## License diff --git a/config/config.exs b/config/config.exs index 2229caf..b113956 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/smokestack", + repository_url: "https://code.harton.nz/james/wayfarer", manage_mix_version?: true, version_tag_prefix: "v", manage_readme_version: "README.md" diff --git a/mix.exs b/mix.exs index ed6b739..40ab6c0 100644 --- a/mix.exs +++ b/mix.exs @@ -18,8 +18,8 @@ defmodule Wayfarer.MixProject do deps: deps(), description: @moduledoc, package: package(), - source_url: "https://code.harton.nz/bivouac/wayfarer", - homepage_url: "https://code.harton.nz/bivouac/wayfarer", + source_url: "https://code.harton.nz/james/wayfarer", + homepage_url: "https://code.harton.nz/james/wayfarer", aliases: aliases(), dialyzer: [plt_add_apps: []], docs: [ @@ -36,9 +36,9 @@ defmodule Wayfarer.MixProject do files: ~w[lib .formatter.exs mix.exs README.md LICENSE.md CHANGELOG.md], licenses: ["HL3-FULL"], links: %{ - "Source" => "https://code.harton.nz/bivouac/wayfarer" + "Source" => "https://code.harton.nz/james/wayfarer" }, - source_url: "https://code.harton.nz/bivouac/wayfarer" + source_url: "https://code.harton.nz/james/wayfarer" ] end