Skip to content

Commit

Permalink
Bump version to 2.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gomoripeti committed May 15, 2018
1 parent cef94fc commit 7b616ef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The preferred way is to add the `xprof` *Hex* package as a dependency to you reb

{deps, [
...
{xprof, "2.0.0-rc.0"}
{xprof, "2.0.0-rc.1"}
]}.
```

Expand All @@ -54,7 +54,7 @@ The preferred way is to add the `xprof` *Hex* package as a dependency to you reb
defp deps do
[
...
{:xprof, "~> 2.0.0-rc.0"}
{:xprof, "~> 2.0.0-rc.1"}
]
end
```
Expand All @@ -65,7 +65,7 @@ You can also fetch from the github repository (not recommended, only for develop
```erlang
{deps, [
...
{xprof_umbrella, {raw, {git, "https://github.com/appliscale/xprof.git", {tag, "2.0.0-rc.0"}}}},
{xprof_umbrella, {raw, {git, "https://github.com/appliscale/xprof.git", {tag, "2.0.0-rc.1"}}}},
{xprof_core, {rsync, "_build/default/lib/xprof_umbrella/apps/xprof_core"}},
{xprof_gui, {rsync, "_build/default/lib/xprof_umbrella/apps/xprof_gui"}},
{xprof, {rsync, "_build/default/lib/xprof_umbrella/apps/xprof"}},
Expand Down
2 changes: 1 addition & 1 deletion apps/xprof/src/xprof.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, xprof,
[{description, "Visual profiler for BEAM languages"}
,{vsn, "2.0.0-rc.0"}
,{vsn, "2.0.0-rc.1"}
,{registered, []}
,{applications,
[xprof_core,
Expand Down
2 changes: 1 addition & 1 deletion apps/xprof_core/src/xprof_core.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, xprof_core,
[{description, "Visual BEAM profiler tracer core"}
,{vsn, "2.0.0-rc.0"}
,{vsn, "2.0.0-rc.1"}
,{registered, []}
,{mod, {'xprof_core_app', []}}
,{applications,
Expand Down
2 changes: 1 addition & 1 deletion apps/xprof_gui/priv/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/xprof_gui/priv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xprof-gui",
"version": "2.0.0-rc.0",
"version": "2.0.0-rc.1",
"description": "XProf - Visual tracer and profiler for BEAM languages",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion apps/xprof_gui/src/xprof_gui.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, xprof_gui,
[{description, "Visual BEAM profiler GUI"}
,{vsn, "2.0.0-rc.0"}
,{vsn, "2.0.0-rc.1"}
,{registered, []}
,{mod, {'xprof_gui_app', []}}
,{applications,
Expand Down

0 comments on commit 7b616ef

Please sign in to comment.