Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project are documented in this file.

This project follows Semantic Versioning.

## [0.1.1] - 2026-02-16

### Added

- GitHub Actions workflows for CI, release to npm, dependency review, CodeQL, and first-interaction welcome messages.
- Project governance files: `LICENSE`, `CONTRIBUTING.md`, and `CODE_OF_CONDUCT.md`.
- README badges and GitHub Pages demo link.

### Changed

- README structure and wording for a cleaner, more professional presentation.
- Build banner generation now reads metadata (including version) from `package.json`.

## [0.1.0] - 2026-02-16

### Added
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<a href="./CONTRIBUTING.md"><img alt="contributions welcome" src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg"></a>
<a href="https://github.com/NullSablex/counter-up/actions/workflows/ci.yml"><img alt="CI" src="https://img.shields.io/github/actions/workflow/status/NullSablex/counter-up/ci.yml?branch=main&label=CI"></a>
<a href="https://github.com/NullSablex/counter-up/actions/workflows/codeql.yml"><img alt="CodeQL" src="https://img.shields.io/github/actions/workflow/status/NullSablex/counter-up/codeql.yml?branch=main&label=CodeQL"></a>
<a href="https://nullsablex.github.io/counter-up/demo/"><img alt="demo" src="https://img.shields.io/badge/demo-live-orange"></a>
<a href="https://github.com/NullSablex/counter-up/stargazers"><img alt="stars" src="https://img.shields.io/github/stars/NullSablex/counter-up?style=social"></a>
</p>

Expand All @@ -30,6 +31,11 @@ npm install counter-up
O pacote já inclui os arquivos prontos de `dist/` (ESM, UMD e minificados).
Para usar a biblioteca, não é necessário rodar build.

## Demo

Acesse a demonstração online no GitHub Pages:
`https://nullsablex.github.io/counter-up/demo/`

## Uso

### ESM (elemento único)
Expand Down
2 changes: 1 addition & 1 deletion dist/counterup.esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* counter-up v0.1.0 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
/* counter-up v0.1.1 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
const easings = {
linear: (t) => t,
easeInOutQuad: (t) => (t < 0.5 ? 2 * t * t : 1 - Math.pow(-2 * t + 2, 2) / 2),
Expand Down
2 changes: 1 addition & 1 deletion dist/counterup.esm.min.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/counterup.umd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* counter-up v0.1.0 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
/* counter-up v0.1.1 | Author: NullSablex | https://github.com/NullSablex/counter-up.git | MIT License */
(function (global, factory) {
if (typeof module === "object" && typeof module.exports === "object") {
module.exports = factory();
Expand Down
2 changes: 1 addition & 1 deletion dist/counterup.umd.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "counter-up",
"version": "0.1.0",
"version": "0.1.1",
"description": "Biblioteca JS pura para animação de contadores numéricos",
"author": "NullSablex",
"repository": {
Expand Down
Loading