Skip to content

Commit ccd2d38

Browse files
committed
Rename package app to systemdkit
1 parent 3ce0c03 commit ccd2d38

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.1.1
4+
5+
- Renamed the OTP application from `:systemd` to `:systemdkit` so dependencies can use the normal `{:systemdkit, "~> 0.1.1"}` form.
6+
- Renamed the GitHub repository to `elixir-vibe/systemdkit`.
7+
- Kept public Elixir modules under the `Systemd.*` namespace.
8+
39
## v0.1.0
410

511
First stable release.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Pure Elixir tools for systemd unit files and D-Bus manager control.
66

77
## Installation
88

9-
The Hex package is named `systemdkit`; the Mix application and modules are `:systemd` / `Systemd`.
9+
The Hex package and Mix application are named `systemdkit`; public modules use the `Systemd` namespace.
1010

1111
```elixir
1212
def deps do
1313
[
14-
{:systemd, "~> 0.1.0", hex: :systemdkit}
14+
{:systemdkit, "~> 0.1.1"}
1515
]
1616
end
1717
```

mix.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
defmodule Systemd.MixProject do
22
use Mix.Project
33

4-
@version "0.1.0"
5-
@source_url "https://github.com/elixir-vibe/systemd"
4+
@version "0.1.1"
5+
@source_url "https://github.com/elixir-vibe/systemdkit"
66

77
def project do
88
[
9-
app: :systemd,
9+
app: :systemdkit,
1010
version: @version,
1111
elixir: "~> 1.18",
1212
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)