Current section
8 Versions
Jump to
Current section
8 Versions
Compare versions
3
files changed
+30
additions
-9
deletions
| @@ -0,0 +1,5 @@ | |
| 1 | + # CHANGELOG |
| 2 | + |
| 3 | + ## v1.0.1 (2023-02-12) |
| 4 | + |
| 5 | + * Stable release |
| @@ -6,10 +6,11 @@ | |
| 6 6 | [<<"lib">>,<<"lib/orion_collector">>, |
| 7 7 | <<"lib/orion_collector/application.ex">>, |
| 8 8 | <<"lib/orion_collector/tracer.ex">>,<<"lib/orion_collector.ex">>, |
| 9 | - <<".formatter.exs">>,<<"mix.exs">>,<<"README.md">>,<<"LICENSE">>]}. |
| 9 | + <<".formatter.exs">>,<<"mix.exs">>,<<"README.md">>,<<"LICENSE">>, |
| 10 | + <<"CHANGELOG.md">>]}. |
| 10 11 | {<<"licenses">>,[<<"Apache-2.0">>]}. |
| 11 12 | {<<"links">>, |
| 12 | - [{<<"GitHub">>,<<"https://github.com/DianaOlympos/orion_collector">>}]}. |
| 13 | + [{<<"github">>,<<"https://github.com/LivewareProblems/orion_collector">>}]}. |
| 13 14 | {<<"name">>,<<"orion_collector">>}. |
| 14 15 | {<<"requirements">>, |
| 15 16 | [[{<<"app">>,<<"dog_sketch">>}, |
| @@ -22,4 +23,4 @@ | |
| 22 23 | {<<"optional">>,false}, |
| 23 24 | {<<"repository">>,<<"hexpm">>}, |
| 24 25 | {<<"requirement">>,<<"~> 1.6">>}]]}. |
| 25 | - {<<"version">>,<<"1.0.0">>}. |
| 26 | + {<<"version">>,<<"1.0.1">>}. |
| @@ -1,14 +1,19 @@ | |
| 1 1 | defmodule OrionCollector.MixProject do |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 | + @version "1.0.1" |
| 5 | + |
| 4 6 | def project do |
| 5 7 | [ |
| 6 8 | app: :orion_collector, |
| 7 | - version: "1.0.0", |
| 9 | + version: @version, |
| 8 10 | elixir: "~> 1.12", |
| 11 | + elixirc_paths: elixirc_paths(Mix.env()), |
| 9 12 | start_permanent: Mix.env() == :prod, |
| 10 13 | deps: deps(), |
| 11 | - package: package() |
| 14 | + name: "orion_collector", |
| 15 | + package: package(), |
| 16 | + docs: docs() |
| 12 17 | ] |
| 13 18 | end |
| 14 19 | |
| @@ -20,14 +25,16 @@ defmodule OrionCollector.MixProject do | |
| 20 25 | ] |
| 21 26 | end |
| 22 27 | |
| 28 | + # Specifies which paths to compile per environment. |
| 29 | + defp elixirc_paths(:test), do: ["lib", "test/support"] |
| 30 | + defp elixirc_paths(_), do: ["lib"] |
| 31 | + |
| 23 32 | # Run "mix help deps" to learn about dependencies. |
| 24 33 | defp deps do |
| 25 34 | [ |
| 26 35 | {:dog_sketch, "~> 0.1.2"}, |
| 27 36 | {:ex2ms, "~> 1.6"}, |
| 28 37 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} |
| 29 | - # {:dep_from_hexpm, "~> 0.3.0"}, |
| 30 | - # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} |
| 31 38 | ] |
| 32 39 | end |
| 33 40 | |
| @@ -35,8 +42,16 @@ defmodule OrionCollector.MixProject do | |
| 35 42 | [ |
| 36 43 | licenses: ["Apache-2.0"], |
| 37 44 | description: "server side data collector for Orion profiler", |
| 38 | - links: %{"GitHub" => "https://github.com/DianaOlympos/orion_collector"}, |
| 39 | - source_url: "https://github.com/DianaOlympos/orion_collector" |
| 45 | + links: %{github: "https://github.com/LivewareProblems/orion_collector"}, |
| 46 | + source_url: "https://github.com/LivewareProblems/orion_collector" |
| 47 | + ] |
| 48 | + end |
| 49 | + |
| 50 | + defp docs do |
| 51 | + [ |
| 52 | + main: "orion_collector", |
| 53 | + source_ref: "v#{@version}", |
| 54 | + source_url: "https://github.com/LivewareProblems/orion_collector" |
| 40 55 | ] |
| 41 56 | end |
| 42 57 | end |