Skip to content

Commit

Permalink
Merge pull request #255 from Hexagon/dev
Browse files Browse the repository at this point in the history
Release 8.1.1
  • Loading branch information
Hexagon committed Aug 3, 2024
2 parents 33a1d88 + a4e35e2 commit c08926e
Show file tree
Hide file tree
Showing 14 changed files with 108 additions and 108 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ Using Deno

```typescript
// From deno.land/x
import { Cron } from "https://deno.land/x/croner@8.1.0/dist/croner.js";
import { Cron } from "https://deno.land/x/croner@8.1.1/dist/croner.js";

// ... or jsr.io
import { Cron } from "jsr:@hexagon/croner@8.1.0";
import { Cron } from "jsr:@hexagon/croner@8.1.1";
```

In a webpage using the UMD-module
Expand Down
2 changes: 1 addition & 1 deletion dist/croner.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.min.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.cjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/src/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Cron for JavaScript and TypeScript"
},
"substitute": {
"$CRONER_VERSION": "8.1.0"
"$CRONER_VERSION": "8.1.1"
},
"top_links": [
{
Expand Down
188 changes: 94 additions & 94 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "croner",
"version": "8.1.0",
"version": "8.1.1",
"description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environments.",
"author": "Hexagon <github.com/hexagon>",
"homepage": "https://croner.56k.guru",
Expand Down
2 changes: 1 addition & 1 deletion src/pattern.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { CronDate } from "./date.js";
*/
export const LAST_OCCURRENCE = 0b100000;
export const ANY_OCCURRENCE = 0b00001 | 0b00010 | 0b00100 | 0b01000 | 0b10000 | LAST_OCCURRENCE;
export const OCCURRENCE_BITMASKS = [0b00001, 0b00010, 0b00100, 0b010000, 0b10000];
export const OCCURRENCE_BITMASKS = [0b00001, 0b00010, 0b00100, 0b01000, 0b10000];

/**
* Create a CronPattern instance from pattern string ('* * * * * *')
Expand Down

0 comments on commit c08926e

Please sign in to comment.