Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radiac committed Aug 1, 2023
1 parent 527c5b3 commit 43da505
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: NPM
name: Publish

on:
push:
Expand Down
13 changes: 11 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@
Changelog
=========

0.2.1 to 0.2.2, 2023-07-26/27
=============================
1.0.0, 2023-08-01
=================

* Additional testing and documentation
* Promote v0.2 to v1 stable release


0.2.2, 2023-07-27
=================

(Also 0.2.1, 2023-07-26)

Packaging and documentation updates.

Expand Down
5 changes: 3 additions & 2 deletions docs/installation-javascript.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ and import it in your code:
.. code-block:: javascript
import { init as init_formsets } from 'django-fancy-formset';
import 'django-fancy-formset/dist/formset.min.css'; // optional
document.addEventListener('DOMContentLoaded', e => {
init_formsets();
Expand All @@ -74,8 +75,8 @@ and import it in your code:
As a module in the browser
==========================

You can also use it as a module directly from your HTML - here we'll assume you've
copied ``formset.module.js`` into your Django static dir:
You can also use the JavaScript module directly from your HTML - here we'll assume
you've copied ``formset.module.js`` into your Django static dir:

.. code-block:: html

Expand Down
2 changes: 1 addition & 1 deletion fancy_formset/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .formsets import FancyFormSet, FancyInlineFormSet, FancyModelFormSet # noqa


__version__ = "0.2.2"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "django-fancy-formset",
"version": "0.2.2",
"version": "1.0.0",
"description": "A pure JavaScript library to manage Django formsets",
"source": "src/formset.js",
"main": "dist/formset.js",
Expand Down

0 comments on commit 43da505

Please sign in to comment.