Skip to content

Commit 1a3ddd5

Browse files
committed
Updated version number and README
1 parent 84eeb34 commit 1a3ddd5

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

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.0.7
4+
project ("AudioFile" VERSION 1.0.8
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 & 1 deletion
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.0.7-green.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/version-1.0.8-green.svg?style=flat-square)
55
![License](https://img.shields.io/badge/license-GPL-blue.svg?style=flat-square)
66
![Language](https://img.shields.io/badge/language-C++-yellow.svg?style=flat-square)
77

@@ -122,6 +122,12 @@ Usage
122122
audioFile.save ("path/to/desired/audioFile.aif", AudioFileFormat::Aiff);
123123

124124

125+
Examples
126+
-----------------
127+
128+
Please see the `examples` folder for some examples on library usage.
129+
130+
125131
A Note On Types
126132
-----------------
127133

@@ -150,6 +156,12 @@ If you prefer not to see these messages, you can disable this error logging beha
150156
Versions
151157
-------
152158

159+
##### 1.0.8 - 18th October 2020
160+
161+
- CMake support
162+
- Construct instances with a file path
163+
- Bug fixes
164+
153165
##### 1.0.7 - 3rd July 2020
154166

155167
- Support for 32-bit audio files
@@ -185,7 +197,16 @@ Contributions
185197
* Multichannel (i.e. >2 channels) audio file support ([Sidelobe](https://github.com/Sidelobe))
186198
* Read/write of iXML data chunks ([mynameisjohn](https://github.com/mynameisjohn))
187199
* Remove warnings ([Abhinav1997](https://github.com/Abhinav1997))
200+
* Better support on Ubuntu ([BenjaminHinchliff](https://github.com/BenjaminHinchliff))
201+
202+
Want to Contribute?
203+
-------
204+
205+
If you would like to submit a pull request for this library, please do! But kindly follow the following simple guidelines...
188206

207+
* Make the changes as concise as is possible for the change you are proposing
208+
* Avoid unnecessarily changing a large number of lines - e.g. commits changing the number of spaces in indentations on all lines (and so on)
209+
* Keep to the code style of this library which is the [JUCE Coding Standards](https://juce.com/discover/stories/coding-standards)
189210

190211
License
191212
-------

0 commit comments

Comments
 (0)