Skip to content

Commit

Permalink
move to elixir-makeup organization
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenDE committed Feb 9, 2025
1 parent 8846ed2 commit 8720971
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.1.3

Moved `makeup_syntect` to the [elixir-makeup](https://github.com/elixir-makeup) GitHub origanization.

## v0.1.2

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The package can be installed by adding `makeup_syntect` to your list of dependen
```elixir
def deps do
[
{:makeup_syntect, github: "SteffenDE/makeup_syntect"}
{:makeup_syntect, "~> 0.1"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/makeup_syntect.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule MakeupSyntect do
use RustlerPrecompiled,
otp_app: :makeup_syntect,
crate: "makeup_syntect",
base_url: "https://github.com/SteffenDE/makeup_syntect/releases/download/v#{version}",
base_url: "https://github.com/elixir-makeup/makeup_syntect/releases/download/v#{version}",
force_build: System.get_env("MAKEUP_SYNTECT_BUILD") in ["1", "true"],
version: version

Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule MakeupSyntect.MixProject do
use Mix.Project

@version "0.1.2"
@version "0.1.3"

def project do
[
Expand All @@ -13,11 +13,11 @@ defmodule MakeupSyntect.MixProject do
docs: [
main: "readme",
extras: Path.wildcard("examples/*.md") ++ ["README.md", "CHANGELOG.md"],
source_url: "https://github.com/SteffenDE/makeup_syntect"
source_url: "https://github.com/elixir-makeup/makeup_syntect"
],
package: package(),
description: description(),
source_url: "https://github.com/SteffenDE/makeup_syntect"
source_url: "https://github.com/elixir-makeup/makeup_syntect"
]
end

Expand Down Expand Up @@ -57,7 +57,7 @@ defmodule MakeupSyntect.MixProject do
"mix.exs"
],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/SteffenDE/makeup_syntect"}
links: %{"GitHub" => "https://github.com/elixir-makeup/makeup_syntect"}
]
end
end
2 changes: 1 addition & 1 deletion native/makeup_syntect/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/makeup_syntect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "makeup_syntect"
version = "0.1.2"
version = "0.1.3"
authors = []
edition = "2021"

Expand Down

0 comments on commit 8720971

Please sign in to comment.