Skip to content

Commit

Permalink
Fix version string in 1.7.2
Browse files Browse the repository at this point in the history
mybearworld committed Nov 8, 2024
1 parent 0e7d823 commit dd1272a
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.7.3 - 2024-11-08

### Fixed

- Message telling you to update from a non-existent version.

## 1.7.2 - 2024-11-07

### Fixed
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mbw/roarbot",
"version": "1.7.2",
"version": "1.7.3",
"exports": {
".": "./mod.ts"
}
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ export * from "./patterns.ts";
export * from "./rich/post.ts";

const ATTACMHENT_MAX_SIZE = 25 << 20;
const version = "1.7.27.17.1";
const version = "1.7.3";
const logTimeFormat = new Intl.DateTimeFormat("en-US", {
timeStyle: "medium",
hour12: false,

0 comments on commit dd1272a

Please sign in to comment.