Skip to content

Commit

Permalink
Release v0.1.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared authored Apr 24, 2024
1 parent 1be78a9 commit 8e15297
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [Unreleased](https://github.com/signalfx/signalflow-client-go/compare/v0.1.0...main)

## [v0.1.0](https://github.com/signalfx/signalflow-client-go/releases/tag/v0.1.0)

This is the first release after the `github.com/signalfx/signalfx-go/signalflow/v2`
migration to this repository. In order to migrate from the deprecated package
you have to replace `github.com/signalfx/signalfx-go/signalflow/v2` with
`github.com/signalfx/signalflow-client-go/signalflow`.

### Added

- Add `SetLogger` method `FakeBackend` to allow setting an internal logger.
([#12](https://github.com/signalfx/signalflow-client-go/pull/12))

### Changed

- `FakeBackend` no longer emits internal logs using global `log`.
([#12](https://github.com/signalfx/signalflow-client-go/pull/12))

### Fixed

- Fix a goroutine leak and close the channel returned by `Computation.Events` when the computation finishes.
[(#15)](https://github.com/signalfx/signalflow-client-go/pull/15)
([#15](https://github.com/signalfx/signalflow-client-go/pull/15))
10 changes: 10 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release Process

## Pre-release

Create a pull request named `Release v<version>` to update the [`CHANGELOG.md`](CHANGELOG.md):

- Add a new header to representing the new release.
- Consider adding a description for the new release.
Especially if it adds new features or introduces breaking changes.

## Release

1. Add and push a signed tag:

```sh
Expand Down

0 comments on commit 8e15297

Please sign in to comment.