Skip to content

Commit

Permalink
Bump to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-akya committed Oct 9, 2021
1 parent dae00d4 commit 72c1cc2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Vix [![Hex.pm](https://img.shields.io/hexpm/v/vix.svg)](https://hex.pm/packages/vix)
# Vix

[![CI](https://github.com/akash-akya/vix/actions/workflows/elixir.yaml/badge.svg)](https://github.com/akash-akya/vix/actions/workflows/elixir.yaml)
[![Hex.pm](https://img.shields.io/hexpm/v/vix.svg)](https://hex.pm/packages/vix)
[![docs](https://img.shields.io/badge/docs-hexpm-blue.svg)](https://hexdocs.pm/vix/)

Vix is Elixir extension for [vips](https://libvips.github.io/libvips/) image processing library.

Expand Down
14 changes: 9 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
defmodule Vix.MixProject do
use Mix.Project

@version "0.6.0"
@scm_url "https://github.com/akash-akya/vix"

def project do
[
app: :vix,
version: "0.5.0",
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
Expand All @@ -18,11 +21,12 @@ defmodule Vix.MixProject do
description: description(),

# Docs
source_url: "https://github.com/akash-akya/vix",
homepage_url: "https://github.com/akash-akya/vix",
source_url: @scm_url,
homepage_url: @scm_url,
docs: [
main: "readme",
extras: ["README.md"]
source_ref: "v#{@version}",
extras: ["README.md", "LICENSE"]
]
]
end
Expand All @@ -45,7 +49,7 @@ defmodule Vix.MixProject do
files:
~w(lib .formatter.exs mix.exs README* LICENSE* Makefile c_src/Makefile c_src/*.{h,c} c_src/g_object/*.{h,c}),
links: %{
GitHub: "https://github.com/akash-akya/vix",
GitHub: @scm_url,
libvips: "https://libvips.github.io/libvips"
}
]
Expand Down

0 comments on commit 72c1cc2

Please sign in to comment.