Skip to content

Commit

Permalink
# 1.3.58 (2023-11-26 / cc6975b)
Browse files Browse the repository at this point in the history
- Add exception handling through `uncaught-exception-handler`
- Make our thread pool threads recognizable by adding `at-at` to the thread name
- Add pprint handlers for records
- Add type hints to avoid reflection, and to be Babashka/GraalVM compatible
- Make `shutdown-pool!` public

## 1.2.0
_28th May 2013_

* BREAKING CHANGE - Remove support for specifying stop-delayed? and
  stop-periodic? scheduler strategies.
* Jobs now correctly report as no longer being scheduled when pool is shutdown.

## 1.1.0
_14th Jan 2013_

* Added new fn `interspaced` which will call fun repeatedly with a
  specified interspacing.
* Added missing trailing quotes when printing schedule.
  • Loading branch information
plexus committed Nov 26, 2023
1 parent cc6975b commit 2031fa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .VERSION_PREFIX
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2
1.3
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 1.3.58 (2023-11-26 / cc6975b)

- Add exception handling through `uncaught-exception-handler`
- Make our thread pool threads recognizable by adding `at-at` to the thread name
Expand All @@ -18,5 +18,4 @@ _14th Jan 2013_

* Added new fn `interspaced` which will call fun repeatedly with a
specified interspacing.
* Added missing trailing quotes when printing schedule.

* Added missing trailing quotes when printing schedule.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ Simple ahead-of-time function scheduler. Allows you to schedule the execution of
To use the latest release, add the following to your `deps.edn` ([Clojure CLI](https://clojure.org/guides/deps_and_cli))

```
overtone/at-at {:mvn/version "0.0.0"}
overtone/at-at {:mvn/version "1.3.58"}
```

or add the following to your `project.clj` ([Leiningen](https://leiningen.org/))

```
[overtone/at-at "0.0.0"]
[overtone/at-at "1.3.58"]
```
<!-- /installation -->

Expand Down

0 comments on commit 2031fa1

Please sign in to comment.