File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
511First stable release.
Original file line number Diff line number Diff 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
1212def deps do
1313 [
14- {:systemd , " ~> 0.1.0 " , hex: :systemdkit }
14+ {:systemdkit , " ~> 0.1.1 " }
1515 ]
1616end
1717```
Original file line number Diff line number Diff line change 11defmodule 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 ,
You can’t perform that action at this time.
0 commit comments