Skip to content

Commit

Permalink
VersionPrep for v1.0.0 (changelog) (#386)
Browse files Browse the repository at this point in the history
* updated changelog for new version, added migration details for breaking change.

* updated version in CMakeLists and version.h for new release.

Co-authored-by: stephenhensley <[email protected]>
  • Loading branch information
stephenhensley and stephenhensley authored Jul 21, 2021
1 parent 6f78393 commit df034a5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# libDaisy Changelog

## Unreleased
## v1.0.0

### Breaking Changes

* move MidiEvent and related data to `daisy` namespace.

### Features

* string: allow more integer types in `FixedCapStr::AppendInt()`
* fifo/stack: Add new methods for searching elements
* fifo/stack: Reduce binary size
Expand All @@ -31,7 +31,16 @@

### Migrating

With `using namespace daisy` (as typical in example programs) no changes necessary. Otherwise:

```c++
// Old
MidiEvent event;

// New
daisy::MidiEvent event;
```

## v0.1.0

Initial Release

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_policy(SET CMP0048 NEW)
project (libdaisy VERSION 0.1.0)
project (libdaisy VERSION 1.0.0)
cmake_minimum_required(VERSION 3.20)

set(TARGET daisy)
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#ifndef DSY_VERSION_H
#define DSY_VERSION_H

#define LIBDAISY_VER_MAJ 0
#define LIBDAISY_VER_MIN 1
#define LIBDAISY_VER_MAJ 1
#define LIBDAISY_VER_MIN 0
#define LIBDAISY_VER_PATCH 0

#endif

0 comments on commit df034a5

Please sign in to comment.