From 54c569768fc7e1f72d74240217eec5159b2bdee1 Mon Sep 17 00:00:00 2001 From: Daniel Khaapamyaki Date: Tue, 9 Apr 2024 12:05:11 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c75934..d6c176d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.2.6 (2024-04-09) + +- Bug fixes + - Typespec `t()` for `Infer.Type` is a struct instead of map by @ShreyanJain9 + ## 0.2.5 (2023-11-23) - Bug fixes diff --git a/README.md b/README.md index 8ac7f36..32a18d6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ by adding `infer` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:infer, "~> 0.2.5"} + {:infer, "~> 0.2.6"} ] end ``` diff --git a/mix.exs b/mix.exs index aef19d4..013fd36 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Infer.MixProject do def project do [ app: :infer, - version: "0.2.5", + version: "0.2.6", elixir: "~> 1.10", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,