Skip to content

Commit

Permalink
Merge pull request #30 from wojas/update-docs-for-1.9.2
Browse files Browse the repository at this point in the history
Update docs for v1.9.2 & document release process
  • Loading branch information
wojas authored Dec 7, 2023
2 parents 28e8840 + 257bc07 commit 36388b7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release Change Log

## v1.9.2 (2023-12-07)

## What's Changed
* Fix: allocate C memory for MDB_val in readonly Txn by @wojas in https://github.com/PowerDNS/lmdb-go/pull/29
* Disable memcpy() overflow warnings in C compilation by @shane-ns1 in https://github.com/PowerDNS/lmdb-go/pull/19
* Replace reflect.SliceHeader with unsafe.Slice by @shane-ns1 in https://github.com/PowerDNS/lmdb-go/pull/21
* Add names to fields used in tests by @shane-ns1 in https://github.com/PowerDNS/lmdb-go/pull/22
* Fix file mode in Open() statement by @shane-ns1 in https://github.com/PowerDNS/lmdb-go/pull/24
* Fix issues reported by staticcheck in tests by @shane-ns1 in https://github.com/PowerDNS/lmdb-go/pull/26

## New Contributors
* @shane-ns1 made their first contribution in https://github.com/PowerDNS/lmdb-go/pull/19
* @fiatjaf reported https://github.com/PowerDNS/lmdb-go/issues/28

**Full Changelog**: https://github.com/PowerDNS/lmdb-go/compare/v1.9.1...v1.9.2

## v1.9.1 (2023-09-14)

- Fix release numbers in the readme by @pieterlexis in https://github.com/PowerDNS/lmdb-go/pull/10
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lmdb-go [![releases/v1.9.1](https://img.shields.io/badge/release-v1.9.1-375eab.svg)](https://github.com/PowerDNS/lmdb-go/releases) [![C/v0.9.31](https://img.shields.io/badge/C-v0.9.31-555555.svg)](https://github.com/LMDB/lmdb/blob/mdb.RE/0.9/libraries/liblmdb/CHANGES) [![Build Status](https://github.com/PowerDNS/lmdb-go/actions/workflows/go.yml/badge.svg?branch=master)]
# lmdb-go [![releases/v1.9.2](https://img.shields.io/badge/release-v1.9.2-375eab.svg)](https://github.com/PowerDNS/lmdb-go/releases) [![C/v0.9.31](https://img.shields.io/badge/C-v0.9.31-555555.svg)](https://github.com/LMDB/lmdb/blob/mdb.RE/0.9/libraries/liblmdb/CHANGES) [![Build Status](https://github.com/PowerDNS/lmdb-go/actions/workflows/go.yml/badge.svg?branch=master)]

Go bindings to the OpenLDAP Lightning Memory-Mapped Database (LMDB).

Expand Down
12 changes: 12 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Release process

- Check if we need to update the CI for newer Go releases
- Check if there is a new LMDB version and update if needed, see `update-lmdb.sh`
- Create a milestone for the version
- Merge all PRs you want to include
- Mark all solved issues and PRs with the milestone for future reference
- Create the release on Github and let it auto-generate the changelog
- Close the milestone
- Create a new PR for this:
- Copy-paste the changelog into CHANGES.md
- Update the links in README.md

0 comments on commit 36388b7

Please sign in to comment.