From 5e1d9e2625842dddb3f9c086a50f22e4f45dfc2b Mon Sep 17 00:00:00 2001 From: Ben Hoyt Date: Tue, 12 Jul 2022 21:20:53 +1200 Subject: [PATCH] Bump up version to r56 for release --- README.md | 4 ++-- meson.build | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a77e3ca..4e6e536 100644 --- a/README.md +++ b/README.md @@ -143,11 +143,11 @@ Some differences between inih and Python's [ConfigParser](http://docs.python.org ## Using inih with tipi.build -`inih` can be easily used in [tipi.build](https://tipi.build) projects simply by adding the following entry to your `.tipi/deps`: +`inih` can be easily used in [tipi.build](https://tipi.build) projects simply by adding the following entry to your `.tipi/deps` (replace `r56` with the latest version tag): ```json { - "benhoyt/inih": { "@": "r55" } + "benhoyt/inih": { "@": "r56" } } ``` diff --git a/meson.build b/meson.build index 6eaf2a0..3d09269 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('inih', ['c'], license : 'BSD-3-Clause', - version : '55', + version : '56', ) #### options ####