Skip to content

Commit 1fa5d56

Browse files
committed
Update version numbers and README
1 parent a7431b1 commit 1fa5d56

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#===============================================================================
22
cmake_minimum_required (VERSION 3.12)
33

4-
project ("AudioFile" VERSION 1.1.0
4+
project ("AudioFile" VERSION 1.1.1
55
DESCRIPTION "A simple C++ library for reading and writing audio files."
66
HOMEPAGE_URL "https://github.com/adamstark/AudioFile")
77

README.md

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AudioFile
22

33
<!-- Version and License Badges -->
4-
![Version](https://img.shields.io/badge/version-1.1.0-green.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/version-1.1.1-green.svg?style=flat-square)
55
![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)
66
![Language](https://img.shields.io/badge/language-C++-yellow.svg?style=flat-square)
77

@@ -185,6 +185,12 @@ If you prefer not to see these messages, you can disable this error logging beha
185185
Versions
186186
-------
187187

188+
##### 1.1.1 - 4th April 2023
189+
190+
- Support for integer formats
191+
- Improved unit testing
192+
- Many bug fixes
193+
188194
##### 1.1.0 - 15th January 2022
189195

190196
- Moved project to MIT licence
@@ -234,13 +240,20 @@ Versions
234240
Contributions
235241
-------
236242

237-
* Multichannel (i.e. >2 channels) audio file support ([Sidelobe](https://github.com/Sidelobe))
238-
* Read/write of iXML data chunks ([mynameisjohn](https://github.com/mynameisjohn))
239-
* Remove warnings ([Abhinav1997](https://github.com/Abhinav1997))
240-
* Better support on Ubuntu ([BenjaminHinchliff](https://github.com/BenjaminHinchliff))
241-
* Faster loading of audio files ([helloimmatt](https://github.com/helloimmatt/))
242-
* Improvements to Github Actions workflow ([emiro85](https://github.com/emiro85))
243-
* Pull request review ([MatthieuHernandez](https://github.com/MatthieuHernandez))
243+
Many thanks to the following people for their contributions to this library:
244+
245+
* [Abhinav1997](https://github.com/Abhinav1997)
246+
* [alxarsenault](https://github.com/alxarsenault)
247+
* [BenjaminHinchliff](https://github.com/BenjaminHinchliff)
248+
* [emiro85](https://github.com/emiro85)
249+
* [heartofrain](https://github.com/heartofrain)
250+
* [helloimmatt](https://github.com/helloimmatt/)
251+
* [MatthieuHernandez](https://github.com/MatthieuHernandez)
252+
* [mrpossoms](https://github.com/mrpossoms)
253+
* [mynameisjohn](https://github.com/mynameisjohn)
254+
* [Sidelobe](https://github.com/Sidelobe)
255+
* [sschaetz](https://github.com/sschaetz)
256+
* [Yhcrown](https://github.com/Yhcrown)
244257

245258
Want to Contribute?
246259
-------
@@ -250,6 +263,7 @@ If you would like to submit a pull request for this library, please do! But kind
250263
* Make the changes as concise as is possible for the change you are proposing
251264
* Avoid unnecessarily changing a large number of lines - e.g. commits changing the number of spaces in indentations on all lines (and so on)
252265
* Keep to the code style of this library which is the [JUCE Coding Standards](https://juce.com/discover/stories/coding-standards)
266+
* Make the changes relative to the develop branch of the library (as this may have advanced beyond the master branch)
253267

254268
License
255269
-------

0 commit comments

Comments
 (0)