chore: Move repo bivouac/wayfarer -> james/wayfarer.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
James Harton 2023-11-03 10:32:44 +13:00
parent 2d2cbad0a9
commit c32dc0a22c
Signed by: james
GPG key ID: 90E82DAA13F624F4
4 changed files with 11 additions and 11 deletions

View file

@ -5,7 +5,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [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)

View file

@ -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

View file

@ -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"

View file

@ -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