aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authoralexnick <alexnick@ydb.tech>2022-08-12 20:07:18 +0300
committeralexnick <alexnick@ydb.tech>2022-08-12 20:07:18 +0300
commitcc65f4da6b407e808692063c6ea6a9a910a41166 (patch)
treeea7945941cf0f5a272779daea6c1dec76374a076 /contrib
parent9d8ceae328ea2efda6fe8d5480b434e22ad3ba95 (diff)
downloadydb-cc65f4da6b407e808692063c6ea6a9a910a41166.tar.gz
reduce KQP requests count
+
Diffstat (limited to 'contrib')
-rw-r--r--contrib/restricted/boost/hana/CONTRIBUTING.md5
-rw-r--r--contrib/restricted/boost/hana/README.md23
-rw-r--r--contrib/restricted/boost/hana/RELEASE_NOTES.md2
3 files changed, 13 insertions, 17 deletions
diff --git a/contrib/restricted/boost/hana/CONTRIBUTING.md b/contrib/restricted/boost/hana/CONTRIBUTING.md
index 403fae5c60..52d0858a6a 100644
--- a/contrib/restricted/boost/hana/CONTRIBUTING.md
+++ b/contrib/restricted/boost/hana/CONTRIBUTING.md
@@ -18,7 +18,10 @@ you contribute:
running the tests:
```shell
- make check
+ mkdir build
+ cd build
+ cmake ..
+ cmake --build . --target check
```
5. Commit your changes. Your commit message should start with a one line
short description of the modifications, with the details and explanations
diff --git a/contrib/restricted/boost/hana/README.md b/contrib/restricted/boost/hana/README.md
index b4ef11bb35..93364118b7 100644
--- a/contrib/restricted/boost/hana/README.md
+++ b/contrib/restricted/boost/hana/README.md
@@ -171,21 +171,13 @@ Please see [LICENSE.md](LICENSE.md).
## Releasing
-This section acts as a reminder of the few simple steps required to release a
-new version of the library. This is only relevant to Hana's developers. To
-release a new version of the library, make sure the current version in
-`include/boost/hana/version.hpp` matches the release you're about to publish.
-Then, create an annotated tag with:
-```sh
-git tag -a --file=- v<version> <<EOM
-...your message here...
-EOM
-```
-
-Then, push the tag and create a new GitHub release pointing to that tag.
-Once that is done, bump the version number in `include/boost/hana/version.hpp`
-so that it matches the next _planned_ release. Finally, do not forget to update
-the [Homebrew formula][] to point to the latest version.
+To release a new version of Hana, use the `util/release.sh` script. The script
+will merge `develop` to `master`, create a tag on `master` and then bump the
+version on `develop`. The tag on `master` will be annotated with the contents
+of the `RELEASE_NOTES.md` file. Once the `release.sh` script has been run, the
+`master` and `develop` branches should be pushed manually, as well as the tag
+that was created on `master`. Finally, create a GitHub release pointing to the
+new tag on `master`.
<!-- Links -->
@@ -199,4 +191,3 @@ the [Homebrew formula][] to point to the latest version.
[eRuby]: http://en.wikipedia.org/wiki/ERuby
[Hana.docs]: http://boostorg.github.io/hana
[Hana.wiki]: https://github.com/boostorg/hana/wiki
-[Homebrew formula]: https://github.com/Homebrew/homebrew-core/blob/master/Formula/hana.rb
diff --git a/contrib/restricted/boost/hana/RELEASE_NOTES.md b/contrib/restricted/boost/hana/RELEASE_NOTES.md
new file mode 100644
index 0000000000..c10c2a0a25
--- /dev/null
+++ b/contrib/restricted/boost/hana/RELEASE_NOTES.md
@@ -0,0 +1,2 @@
+Release notes for Hana 1.6.2
+============================