changed CHANGELOG.md
 
@@ -1,5 +1,10 @@
1
1
# Changelog
2
2
3
+ ## v0.1.1
4
+
5
+ * Bug fixes
6
+ * Add run-parts which seems to be called from other utilities
7
+
3
8
## v0.1.0
4
9
5
10
Initial release to hex.
changed README.md
 
@@ -44,7 +44,7 @@ upstream project's spellings in our documentation. In Elixir, the convention
44
44
would be to either use `busy_box` or `Busybox`. We decided that the lowercase
45
45
spelling was more important to stay the same since the main executable was named
46
46
`busybox`. Therefore, to stay consistent with Elixir conventions, the main
47
- module is named `Busybox.
47
+ module is named `Busybox`.
48
48
49
49
## Licenses
changed busybox.config
 
@@ -383,9 +383,9 @@ CONFIG_SETKEYCODES=y
383
383
# Debian Utilities
384
384
#
385
385
# CONFIG_PIPE_PROGRESS is not set
386
- # CONFIG_RUN_PARTS is not set
387
- # CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set
388
- # CONFIG_FEATURE_RUN_PARTS_FANCY is not set
386
+ CONFIG_RUN_PARTS=y
387
+ CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y
388
+ CONFIG_FEATURE_RUN_PARTS_FANCY=y
389
389
# CONFIG_START_STOP_DAEMON is not set
390
390
# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set
391
391
# CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set
changed hex_metadata.config
 
@@ -18,4 +18,4 @@
18
18
{<<"optional">>,false},
19
19
{<<"repository">>,<<"hexpm">>},
20
20
{<<"requirement">>,<<"~> 0.5">>}]]}.
21
- {<<"version">>,<<"0.1.0">>}.
21
+ {<<"version">>,<<"0.1.1">>}.
changed mix.exs
 
@@ -4,7 +4,7 @@ defmodule Busybox.MixProject do
4
4
def project do
5
5
[
6
6
app: :busybox,
7
- version: "0.1.0",
7
+ version: "0.1.1",
8
8
elixir: "~> 1.6",
9
9
compilers: [:elixir_make | Mix.compilers()],
10
10
make_targets: ["all"],