Skip to content

Commit

Permalink
Publish package v2.12.2
Browse files Browse the repository at this point in the history
Update version number and CHANGELOG.md.
  • Loading branch information
unflxw committed Aug 14, 2024
1 parent 23e55a0 commit 633387e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
6 changes: 0 additions & 6 deletions .changesets/deprecate-heartbeats.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changesets/rename-heartbeats-to-cron-check-ins.md

This file was deleted.

26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# AppSignal for Elixir changelog

## 2.12.2

_Published on 2024-08-14._

### Changed

- Rename heartbeats to cron check-ins. Calls to `Appsignal.heartbeat` and `Appsignal.Heartbeat` should be replaced with calls to `Appsignal.CheckIn.cron` and `Appsignal.CheckIn.Cron`, for example:

```elixir
# Before
Appsignal.heartbeat("do_something", fn ->
do_something()
end)

# After
Appsignal.CheckIn.cron("do_something", fn ->
do_something
end)
```

(patch [1c3b9c67](https://github.com/appsignal/appsignal-elixir/commit/1c3b9c671544816486b9b1cc69c3400a672c42fb))

### Deprecated

- Calls to `Appsignal.heartbeat` and to methods in `Appsignal.Heartbeat` will emit a deprecation warning at compile-time. (patch [1c3b9c67](https://github.com/appsignal/appsignal-elixir/commit/1c3b9c671544816486b9b1cc69c3400a672c42fb))

## 2.12.1

_Published on 2024-06-25._
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defmodule Appsignal.Mixfile do
use Mix.Project

@source_url "https://github.com/appsignal/appsignal-elixir"
@version "2.12.1"
@version "2.12.2"

def project do
[
Expand Down

0 comments on commit 633387e

Please sign in to comment.