Skip to content

Commit

Permalink
Release (version 1.4.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamsbrar committed Aug 25, 2022
1 parent 183d535 commit 3280967
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.4.0

**Refs**, *an easy and predictable way for accessing DOM nodes*.

Inspired from Callback-Refs in React, Refs in Rad provides an easy and predictable way to access DOM elements that are associated with Rad widgets. Normally Rad takes cares of creating and updating DOM for you but there are many reasons why you would want to access the actual DOM elements. Common use-cases are managing focus (critical for accessibility) and triggering imperative animations.

## 1.3.0

**Hooks**, *use features such as state inside widget-functions*.
Expand Down
2 changes: 1 addition & 1 deletion doc/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- Open `pubspec.yaml` in newly created app folder and add `rad` to your dependencies:
```yaml
dependencies:
rad: '>=1.3.0 <2.0.0'
rad: '>=1.4.0 <2.0.0'
```
3. Import Rad widgets in your `main.dart`
Expand Down
6 changes: 6 additions & 0 deletions packages/rad/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.4.0

**Refs**, *an easy and predictable way for accessing DOM nodes*.

Inspired from Callback-Refs in React, Refs in Rad provides an easy and predictable way to access DOM elements that are associated with Rad widgets. Normally Rad takes cares of creating and updating DOM for you but there are many reasons why you would want to access the actual DOM elements. Common use-cases are managing focus (critical for accessibility) and triggering imperative animations.

## 1.3.0

**Hooks**, *use features such as state inside widget-functions*.
Expand Down
2 changes: 1 addition & 1 deletion packages/rad/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rad
version: 1.3.0
version: 1.4.0
description: >
A zero-dependency frontend framework for creating high-performant web apps using Dart.
Expand Down
1 change: 1 addition & 0 deletions tool/pkg-gen-html-widgets/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# published version of rad. So you've to checkout to a particular point for generating
# compatible widgets:
#
# - git checkout tags/v1.4.0 -b new-branch | for widgets compatible with Rad v1.4 & above
# - git checkout tags/v1.3.0 -b new-branch | for widgets compatible with Rad v1.3 & above
# - git checkout tags/v1.2.0 -b new-branch | for widgets compatible with Rad v1.2 & above
# - git checkout tags/v1.1.0 -b new-branch | for widgets compatible with Rad v1.1 & above
Expand Down

0 comments on commit 3280967

Please sign in to comment.