Skip to content

Commit

Permalink
version 4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Oct 21, 2018
1 parent 8b198d9 commit eb23be1
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
deps/
deps
priv/mac_listener
*.d
*.o
.rebar
ebin/
_build/
rebar.lock
ebin
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: erlang
otp_release:
- 19.3
script: "curl -fsSL https://raw.github.com/synrc/mad/master/mad > mad && chmod +x mad && ./mad dep com"
2 changes: 1 addition & 1 deletion package.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule FS.Mixfile do

def project do
[app: :fs,
version: "3.4.0",
version: "4.10.0",
description: "Erlang File System Listener",
deps: deps,
docs: [],
Expand Down
13 changes: 13 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,16 @@
[{"darwin", "priv/mac_listener", ["c_src/mac/*.c"]},
{"freebsd", "priv/kqueue", ["c_src/bsd/*.c"]}
]}.

{plugins, [pc, rebar3_hex]}.
{provider_hooks, [
{pre, [
{compile, {pc, compile}},
{clean, {pc, clean}}
]}
]}.
%{pre_hooks, [
% {"win32", compile, "make -f c_src/windows/Makefile"},
% {"win32", clean, "make -f c_src/windows/Makefile clean"}
% ]
%}.
4 changes: 2 additions & 2 deletions src/fs.app.src
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{application, fs,
[{description, "FS VXZ Listener"},
{vsn, "4.1.0"},
{vsn, "4.10"},
{registered, []},
{applications, [kernel,stdlib]},
{mod, { fs_app, []}},
{env, [ {backwards_compatible, true} ]},
{maintainers,["Maxim Sokhatsky", "Vladimir Kirillov"]},
{licenses, ["ISCL"]},
{licenses, ["ISC"]},
{links,[{"Github","https://github.com/synrc/fs"}]}
]}.

0 comments on commit eb23be1

Please sign in to comment.