bamtigraph 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bamtigraph",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "Dependency-free, fixed-pixel time-series graphs for browsers, Node.js and Deno, with a native Go port",
5
5
  "license": "BSD-3-Clause",
6
6
  "author": "GoSuda",
package/src/index.ts CHANGED
@@ -426,7 +426,7 @@ type MountedCanvas = HTMLCanvasElement & {
426
426
  };
427
427
 
428
428
  /** BamtiGraph library version. */
429
- export const VERSION: string = "0.1.0";
429
+ export const VERSION: string = "1.0.0";
430
430
  /** Per-operation allocation and enumeration guards. */
431
431
  export const LIMITS: Readonly<{
432
432
  pixels: number;