Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect version #68

Open
mbrimmer83 opened this issue Aug 19, 2024 · 0 comments
Open

Incorrect version #68

mbrimmer83 opened this issue Aug 19, 2024 · 0 comments

Comments

@mbrimmer83
Copy link

I'm trying to use this library, but even though the latest code indicates the dependencies were updated, when pulling 0.5.1, I get an older version of the code. Below is what is provided by mix. I don't think the version was ever updated after the latest upgrade?

defmodule ExFirebaseAuth.MixProject do
  use Mix.Project

  def project do
    [
      app: :ex_firebase_auth,
      version: "0.5.1",
      elixir: "~> 1.10",
      start_permanent: Mix.env() == :prod,
      deps: deps(),
      package: package(),
      aliases: [test: "test"],
      docs: [
        main: "readme",
        extras: ["README.md"]
      ]
    ]
  end

  # Run "mix help compile.app" to learn about applications.
  def application do
    [
      mod: {ExFirebaseAuth, []},
      extra_applications: [:logger],
      registered: [ExFirebaseAuth.KeyStore]
    ]
  end

  # Run "mix help deps" to learn about dependencies.
  defp deps do
    [
      {:jose, "~> 1.10"},
      {:finch, "~> 0.10.0"},
      {:jason, "~> 1.3.0"},
      {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
    ]
  end

  defp package do
    [
      description: "Handle ID Tokens from the Firebase Authentication service",
      links: %{
        "GitHub" => "https://github.com/Nickforall/ExFirebaseAuth"
      },
      licenses: ["MIT"]
    ]
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant