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

Bump versions #26

Merged
merged 2 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Mustache
========

[![Build Status](https://travis-ci.org/schultyy/Mustache.ex.svg?branch=master)](https://travis-ci.org/schultyy/Mustache.ex)
[![Module Version](https://img.shields.io/hexpm/v/mustache.svg)](https://hex.pm/packages/mustache)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/mustache/)
[![Total Download](https://img.shields.io/hexpm/dt/mustache.svg)](https://hex.pm/packages/mustache)
Expand All @@ -13,7 +12,7 @@ Minimal templating with {{mustaches}} in Elixir - [http://mustache.github.com/](
Prerequisites
=============

- Elixir 1.0.x
- Elixir 1.x

Installation
============
Expand All @@ -22,7 +21,7 @@ In your `mix.exs`, add Mustache as dependency:

```elixir
defp deps do
[{:mustache, "~> 0.4.0"}]
[{:mustache, "~> 0.5.0"}]
end
```

Expand Down Expand Up @@ -54,7 +53,7 @@ $ mix test
Copyright and License
=====================

Copyright (c) 2015 Jan Schulte
Copyright (c) 2023 Jan Schulte

This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the [LICENSE.md](./LICENSE.md) file for more details.
15 changes: 7 additions & 8 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
defmodule Mustache.Mixfile do
use Mix.Project

def project do
[app: :mustache,
version: "0.4.0",
elixir: "~> 1.0",
package: package(),
description: description(),
deps: deps()]
end
@version "0.5.0"
@source_url "https://github.com/schultyy/mustache.ex"

def project do
[
app: :mustache,
version: @version,
elixir: "~> 1.0",
package: package(),
description: description(),
deps: deps(),
docs: docs()
]
end

defp description do
"A Mustache Implementation in Elixir"
end

def application do
[applications: [:logger]]
end
Expand Down
Loading