Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrahl committed Mar 19, 2019
1 parent b80a985 commit ae95386
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## [0.4.0] (2019-03-19)

* Replace CMake with Meson build system
- This finally allowed us to get rid of the dependencies script :tada:
* Internal restructuring of source files

## [0.3.0] (2019-03-02)

* Split the stack into three separate entities (major)
Expand Down Expand Up @@ -27,6 +33,7 @@



[0.4.0]: https://github.com/rawrtc/rawrtc/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/rawrtc/rawrtc/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/rawrtc/rawrtc/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/rawrtc/rawrtc/compare/v0.2.0...v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2018, Lennart Grahl
Copyright (c) 2019, Lennart Grahl
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
8 changes: 4 additions & 4 deletions RELEASING.md
Expand Up @@ -9,13 +9,13 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
export GPG_KEY=3FDB14868A2B36D638F3C495F98FBED10482ABA6
```

2. Update version number in `CMakeLists.txt`, `src/include/rawrtc.h` and
`CHANGELOG.md`. Also, update the URL with the corresponding tags.
2. Update version number in `meson.build` and `CHANGELOG.md`. Also, update the
URL with the corresponding tags.

3. Do a signed commit and signed tag of the release:

```bash
git add CMakeLists.txt src/include/rawrtc.h CHANGELOG.md
git add meson.build CHANGELOG.md
git commit -S${GPG_KEY} -m "Release v${VERSION}"
git tag -u ${GPG_KEY} -m "Release v${VERSION}" v${VERSION}
```
Expand All @@ -32,7 +32,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt

```md
## [Unreleased] (YYYY-MM-DD)

* ...
```

Expand Down
2 changes: 1 addition & 1 deletion meson.build
@@ -1,6 +1,6 @@
# Project definition
project('rawrtc', 'c',
version: '0.3.0',
version: '0.4.0',
default_options: ['c_std=c99'],
meson_version: '>=0.48.0')

Expand Down

0 comments on commit ae95386

Please sign in to comment.