Skip to content

Commit

Permalink
Add change log and update version numbers in preparation for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calebzulawski committed Oct 13, 2019
1 parent 1f40a75 commit c86d98b
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,42 @@
# Changelog
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).

## [Unreleased]

## [0.2.0] - 2019-10-13
### Add
- This change log
- Documentation!
- Support for the following types:
- `enum` via reflection macros
- pointers
- `std::pair`, `std::tuple`
- `std::variant`
- `std::bitset`
- `std::chrono::duration`
- `std::unique_ptr`, `std::shared_ptr`, `std::weak_ptr`
- `std::complex`
- `std::atomic`
- Formatting via `hippo::formatter`
### Fixed
- `HIPPO_MEMBER_EXPR` can now be used with lambdas
- A variety of bugs caught by unit tests
- Warnings presented by `-Wall -Wextra -Wpedantic` in GCC and Clang
### Changed
- Standard library printers are now available in `hippo/std/*.h`

## [0.1.1] - 2019-04-03
### Fixed
- Mark `hippo::condense` inline

## [0.1.0] - 2019-04-03
### Added
- Initial implementation of pretty printers

[unreleased]: https://github.com/calebzulawski/hippo/compare/0.2.0...master
[0.2.0]: https://github.com/calebzulawski/hippo/compare/0.1.1...0.2.0
[0.1.1]: https://github.com/calebzulawski/hippo/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/calebzulawski/hippo/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion doc/Doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Hippo"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.1.0
PROJECT_NUMBER = 0.2.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -19,7 +19,7 @@
author = 'Caleb Zulawski'

# The full version, including alpha/beta/rc tags
release = '0.1.1'
release = '0.2.0'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit c86d98b

Please sign in to comment.