Skip to content

Commit

Permalink
Updating changelog, bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanshVij authored Sep 28, 2022
1 parent dc6ee00 commit 5b8add8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
22 changes: 18 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,41 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.7.0] - 2022-09-28

### Features

- fRPC now uses the `VarInt` encoding format under the hood (added in [polyglot-go v0.5.0](https://github.com/loopholelabs/polyglot-go)) which should help reduce the number of bytes an RPC call is serialized to
- A new `CloseError` type has been added which, when returned by an RPC call, causes the connection to be closed after the message is written. This can be useful for authentication or connection management.
- Streaming is now available! The API matches gRPC's so it should be a drop-in replacement!

### Changes

- The [polyglot-go](https://github.com/loopholelabs/polyglot-go) dependency has been bumped to `v0.5.0`
- The [frisbee-go](https://github.com/loopholelabs/frisbee-go) dependency has been b umped to `v0.7.0`

## [v0.6.0] - 2022-08-24 (Beta)

## Changes
### Changes

- Refactoring the generated code to use the [polyglot-go](https://github.com/loopholelabs/polyglot-go) library to generate message encode/decode functions. ([#3](https://github.com/loopholelabs/frpc-go/pull/3))

## Fixes
### Fixes

- Fixed an issue with the generated code that caused compilation issues when the names of two methods in different services
were the same ([#5](https://github.com/loopholelabs/frpc-go/issues/5))

## [v0.5.1] - 2022-07-20 (Beta)

## Fixes
### Fixes

- Fixed an issue where if the number of services is 0 the RPC Generator would
crash ([#101](https://github.com/loopholelabs/frisbee-go/issues/101))

> Changelogs for [v0.5.0] and before can be found at https://github.com/loopholelabs/frisbee-go
[unreleased]: https://github.com/loopholelabs/frpc-go/compare/v0.6.0...HEAD
[unreleased]: https://github.com/loopholelabs/frpc-go/compare/v0.7.0...HEAD
[v0.7.0]: https://github.com/loopholelabs/frpc-go/releases/tag/v0.7.0
[v0.6.0]: https://github.com/loopholelabs/frpc-go/releases/tag/v0.6.0
[v0.5.1]: https://github.com/loopholelabs/frpc-go/releases/tag/v0.5.1
[v0.5.0]: https://github.com/loopholelabs/frisbee-go/compare/v0.4.6...v0.5.0
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
package version

const (
Version = "v0.6.0"
Version = "v0.7.0"
)

0 comments on commit 5b8add8

Please sign in to comment.