Skip to content

Commit

Permalink
Include VERSION file in package (#47)
Browse files Browse the repository at this point in the history
* Include VERSION file in package

Latest version failed our CI due to absence of the VERSION file in the package.

```
Error while loading project :ua_parser at /home/runner/work/app/app/deps/ua_parser
** (File.Error) could not read file "VERSION": no such file or directory
    (elixir 1.12.2) lib/file.ex:355: File.read!/1
```

New version should be released to fix the package

* Bump version 1.9.1
  • Loading branch information
maartenvanvliet authored Jul 28, 2021
1 parent d562459 commit 49305de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0
1.9.1
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ defmodule UAParser.Mixfile do
[
description: "Parse user-agent strings with BrowserScope patterns",
maintainers: ["Sean Callan", "Nathan Youngman"],
files: ["lib", "mix.exs", "README*", "LICENSE*", "priv"],
files: ["lib", "mix.exs", "README*", "LICENSE*", "priv", "VERSION"],
licenses: ["Apache-2.0"],
links: %{GitHub: @source_url}
]
Expand Down

0 comments on commit 49305de

Please sign in to comment.