Skip to content

Commit

Permalink
Release (version 1.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamsbrar committed Aug 14, 2022
1 parent f31c7cc commit 924d74f
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.3.0

**Hooks**, *use features such as state inside widget-functions*.

Hooks(inspired by React's Hooks) lets you use state and other features without writing classes(such as StatefulWidget). This release includes few ready-to-use hooks and a easy yet powerful Hooks API that you can use to create your own custom hooks. We've also released a hooks package containing implementations of commonly used React Hooks(see [rad_hooks](https://pub.dev/packages/rad_hooks)).

## 1.2.0

**RenderEvents**, *a event system for RenderElements*.
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.2.0 <2.0.0'
rad: '>=1.3.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.3.0

**Hooks**, *use features such as state inside widget-functions*.

Hooks(inspired by React's Hooks) lets you use state and other features without writing classes(such as StatefulWidget). This release includes few ready-to-use hooks and a easy yet powerful Hooks API that you can use to create your own custom hooks. We've also released a hooks package containing implementations of commonly used React Hooks(see [rad_hooks](https://pub.dev/packages/rad_hooks)).

## 1.2.0

**RenderEvents**, *a event system for RenderElements*.
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.2.0
version: 1.3.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.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 924d74f

Please sign in to comment.