Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
change mix file version to 0.0.2 and elixir
Browse files Browse the repository at this point in the history
1.13
  • Loading branch information
shahryarjb committed Apr 21, 2022
1 parent 88c773e commit 5a65cd1
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 16 deletions.
4 changes: 2 additions & 2 deletions apps/mishka_api/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaApi.MixProject do
def project do
[
app: :mishka_api,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.7",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_content/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaContent.MixProject do
def project do
[
app: :mishka_content,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.11",
elixir: "~> 1.13",
compilers: [:gettext | Mix.compilers()],
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_database/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ defmodule MishkaDatabase.MixProject do
def project do
[
app: :mishka_database,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
aliases: aliases(),
lockfile: "../../mix.lock",
elixir: "~> 1.11",
elixir: "~> 1.13",
compilers: [:gettext | Mix.compilers()],
start_permanent: Mix.env() == :prod,
deps: deps()
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_file/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaFile.MixProject do
def project do
[
app: :mishka_file,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.11",
elixir: "~> 1.13",
compilers: [:gettext | Mix.compilers()],
start_permanent: Mix.env() == :prod,
deps: deps()
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_html/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaHtml.MixProject do
def project do
[
app: :mishka_html,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.7",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_translator/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaTranslator.MixProject do
def project do
[
app: :mishka_translator,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.12",
elixir: "~> 1.13",
compilers: [:gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
deps: deps()
Expand Down
4 changes: 2 additions & 2 deletions apps/mishka_user/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ defmodule MishkaUser.MixProject do
def project do
[
app: :mishka_user,
version: "0.1.0",
version: "0.0.2",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.12",
elixir: "~> 1.13",
compilers: [:gettext | Mix.compilers()],
start_permanent: Mix.env() == :prod,
deps: deps()
Expand Down
21 changes: 19 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
defmodule MishkaCms.Umbrella.MixProject do
use Mix.Project

@version "0.0.2"

def project do
[
apps_path: "apps",
version: "0.1.0",
version: @version,
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
name: "MishkaCms",
source_url: "https://github.com/mishka-group/mishka-cms",
homepage_url: "https://trangell.com/",
homepage_url: "https://mishka.group/",
description: description(),
package: package(),
dialyzer: [
list_unused_filters: true
],
Expand All @@ -36,4 +40,17 @@ defmodule MishkaCms.Umbrella.MixProject do
"ecto.setup": ["ecto.drop", "ecto.create", "ecto.migrate"],
]
end

defp description() do
"MishkaCms an open source and real time API base CMS Powered by Elixir and Phoenix"
end

defp package() do
[
files: ~w(apps config .formatter.exs mix.exs LICENSE README*),
licenses: ["Apache License 2.0"],
maintainers: ["Shahryar Tavakkoli", "Mojtaba Naseri"],
links: %{"GitHub" => "https://github.com/mishka-group/mishka-cms"}
]
end
end

0 comments on commit 5a65cd1

Please sign in to comment.