diff --git a/docs/blog/posts/2.1.0-released.md b/docs/blog/posts/2.1.0-released.md index 4074b66e..3138e833 100644 --- a/docs/blog/posts/2.1.0-released.md +++ b/docs/blog/posts/2.1.0-released.md @@ -45,7 +45,7 @@ quantity q5 = 60 * km / h; quantity q6 = 50 / s; ``` -As a side effect, we introduced a **breaking change**. We can't use the following definition of +As a side effect, we introduced a :boom: **breaking change** :boom:. We can't use the following definition of hertz anymore: ```cpp @@ -91,7 +91,8 @@ In the initial version of the V2 framework, if someone did not like the multiply a `quantity` we provided the `make_quantity()` factory function. A similar approach was used for `quantity_point` creation. -This version removes those (**breaking change**) and introduces two parameter constructors: +This version removes those (:boom: **breaking change** :boom:) and introduces two parameter +constructors: ```cpp quantity q(42, si::metre); @@ -119,7 +120,7 @@ quantity q2 = 42 * Gy; Another significant improvement in this version was redesigning the way we provide compatibility with other similar libraries. The interfaces of `quantity_like_traits` and `quantity_point_like_traits` were changed and extended to provide conversion not only from but also to entities from other -libraries (**breaking change**). +libraries (:boom: **breaking change** :boom:). We've also introduced an innovative approach that allows us to specify if such conversions should happen implicitly or if they need to be forced explicitly. @@ -151,7 +152,7 @@ inline constexpr struct ice_point : relative_point_origin