Skip to content

Commit ef91d68

Browse files
committed
Release 1.0.0
1 parent f28b802 commit ef91d68

10 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ JOS.init();
7171

7272
```html
7373
<!-- CDNJS -->
74-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jos-animation/1.0.0-beta.2/jos.min.js"></script>
74+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jos-animation/1.0.0/jos.min.js"></script>
7575

7676
<!-- unpkg -->
7777
<script src="https://unpkg.com/jos-animation/dist/jos.min.js"></script>
@@ -522,7 +522,7 @@ src/
522522
Releases are automated via GitHub Actions:
523523

524524
1. Update version in `package.json`
525-
2. `git tag v1.0.0-beta.2 && git push --tags`
525+
2. `git tag v1.0.0 && git push --tags`
526526
3. CI builds, tests, creates GitHub Release, and publishes to npm
527527

528528
## Used In

dist/jos.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JOS Animation Library v1.0.0-beta.1 | MIT License | https://jos-animation.vercel.app */
1+
/*! JOS Animation Library v1.0.0 | MIT License | https://jos-animation.vercel.app */
22

33
/* ============================================================
44
Base

dist/jos.debug.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jos.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* JOS Animation Library v1.0.0-beta.1
2+
* JOS Animation Library v1.0.0
33
* https://jos-animation.vercel.app
44
* (c) 2026 Jesvi Jonathan
55
* Released under the MIT License
@@ -1183,15 +1183,15 @@
11831183
/**
11841184
* JOS - JavaScript On Scroll Animation Library
11851185
*
1186-
* @version 1.0.0-beta.1
1186+
* @version 1.0.0
11871187
* @author Jesvi Jonathan
11881188
* @license MIT
11891189
* @see https://jos-animation.vercel.app
11901190
*/
11911191

11921192

11931193
class JOS {
1194-
static version = "1.0.0-beta.1";
1194+
static version = "1.0.0";
11951195
static author = "Jesvi Jonathan";
11961196
static webpage = "https://jos-animation.vercel.app";
11971197
static github = "https://github.com/jesvijonathan/JOS-Animation-Library";

dist/jos.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
<!-- Hero -->
283283
<header class="hero" id="top">
284284
<div class="jos" data-jos_animation="fade-down" data-jos_duration="0.8" data-jos_startVisible="true">
285-
<span class="badge">v1.0.0-beta.2</span>
285+
<span class="badge">v1.0.0</span>
286286
<h1>Scroll animations,<br><span>made simple.</span></h1>
287287
<p class="subtitle">A lightweight, performant scroll animation library built with IntersectionObserver.</p>
288288
<div class="hero-actions">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jos-animation",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0",
44
"description": "A lightweight, performant scroll animation library for the web",
55
"author": "Jesvi Jonathan",
66
"license": "MIT",

rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import terser from "@rollup/plugin-terser";
44
import postcss from "rollup-plugin-postcss";
55

66
const banner = `/*!
7-
* JOS Animation Library v1.0.0-beta.2
7+
* JOS Animation Library v1.0.0
88
* https://jos-animation.vercel.app
99
* (c) ${new Date().getFullYear()} Jesvi Jonathan
1010
* Released under the MIT License

src/animations/jos.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JOS Animation Library v1.0.0-beta.2 | MIT License | https://jos-animation.vercel.app */
1+
/*! JOS Animation Library v1.0.0 | MIT License | https://jos-animation.vercel.app */
22

33
/* ============================================================
44
Base

src/core/JOS.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* JOS - JavaScript On Scroll Animation Library
33
*
4-
* @version 1.0.0-beta.2
4+
* @version 1.0.0
55
* @author Jesvi Jonathan
66
* @license MIT
77
* @see https://jos-animation.vercel.app
@@ -16,7 +16,7 @@ import { DebugOverlay } from "./DebugOverlay.js";
1616
import { queryAll } from "../utils/dom.js";
1717

1818
class JOS {
19-
static version = "1.0.0-beta.2";
19+
static version = "1.0.0";
2020
static author = "Jesvi Jonathan";
2121
static webpage = "https://jos-animation.vercel.app";
2222
static github = "https://github.com/jesvijonathan/JOS-Animation-Library";

0 commit comments

Comments
 (0)