Skip to content

Commit

Permalink
Hotfix version after silly typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Nov 4, 2019
1 parent a7e2f73 commit 128b854
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions doc/08_revision_history.dox
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
/*! \page revisions Revision History

DynaMix 1.3.9
=============

Released: 2019 Nov 4

- Fixed a typo which prevented move assignment of mixins which are not move-constructible


DynaMix 1.3.8
=============

Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "DynaMix"
PROJECT_NUMBER = 1.3.8
PROJECT_NUMBER = 1.3.9
PROJECT_BRIEF = "A new take on polymorphism in C++"

# TODO: (max size 200x55)
Expand Down
2 changes: 1 addition & 1 deletion include/dynamix/mixin_type_info.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ typename std::enable_if<std::is_move_assignable<Mixin>::value,
}

template <typename Mixin>
typename std::enable_if<!std::is_move_constructible<Mixin>::value,
typename std::enable_if<!std::is_move_assignable<Mixin>::value,
mixin_move_proc>::type get_mixin_move_assignment()
{
return nullptr;
Expand Down
2 changes: 1 addition & 1 deletion include/dynamix/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#define DYNAMIX_VERSION_MAJOR 1
#define DYNAMIX_VERSION_MINOR 3
#define DYNAMIX_VERSION_SUB_MINOR 8
#define DYNAMIX_VERSION_SUB_MINOR 9

/// The library's version.
///
Expand Down
2 changes: 1 addition & 1 deletion test/mixin_move.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class custom_mv
custom_mv& operator=(const custom_mv&) = delete;
~custom_mv() = default;

custom_mv(custom_mv&& other) = default;
custom_mv(custom_mv&& other) = delete;

custom_mv& operator=(custom_mv&& other)
{
Expand Down

0 comments on commit 128b854

Please sign in to comment.