diff --git a/README.md b/README.md index f0fed843..cf240c79 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,7 @@ # `mp-units` - A Physical Quantities and Units library for C++ **The mp-units library might be the subject of ISO standardization for C++29. -More on this can be found in ISO C++ paper [P1935](https://wg21.link/p1935) and -[Using std::cpp 2023 talk](https://www.youtube.com/watch?v=3XSVCmWQklI). +More on this can be found in ISO C++ paper [P1935](https://wg21.link/p1935). We are actively looking for parties interested in field trialing the library.** [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/mpusz/mp-units) @@ -23,6 +22,13 @@ We are actively looking for parties interested in field trialing the library.** For now it compiles only on gcc-12+. In the upcoming months a lot of efforts will be done to enable the rest of mainstream compilers and update the documentation to reflect the V2 design.** + +## Video Introduction + +A brief introduction to the library's interfaces and the rationale for changes in the version 2.0 +of **mp-units** were provided in detail by [Mateusz Pusz](https://github.com/mpusz) in the ["mp-units: Lessons Learned and a New C++ Library Design" talk at the ACCU 2023 conference](https://www.youtube.com/watch?v=l0rXdJfXLZc). + + ## Documentation An extensive project documentation can be found on [mp-units GitHub Pages](https://mpusz.github.io/mp-units). @@ -38,6 +44,7 @@ project-related definitions in [our documentation's "Glossary" chapter](https:// Even more terms are provided in the official vocabulary of the [ISO](https://www.iso.org/obp/ui#iso:std:iso-iec:guide:99:ed-1:v2:en) and [BIPM](https://jcgm.bipm.org/vim/en). + ## TL;DR `mp-units` is a compile-time enabled Modern C++ library that provides compile-time dimensional diff --git a/docs/getting_started/introduction.md b/docs/getting_started/introduction.md index b27951e6..106d72ba 100644 --- a/docs/getting_started/introduction.md +++ b/docs/getting_started/introduction.md @@ -6,6 +6,12 @@ manipulation. The initial versions of the library were inspired by the but with each release, the interfaces diverged from the original to provide a better user experience. +!!! note + + A brief introduction to the library's interfaces and the rationale for changes in the version 2.0 + of **mp-units** were provided in detail by [Mateusz Pusz](https://github.com/mpusz) in the + ["mp-units: Lessons Learned and a New C++ Library Design" talk at the ACCU 2023 conference](https://www.youtube.com/watch?v=l0rXdJfXLZc). + ## Open Source