diff options
author | Markus Wüstenberg | 2024-10-11 10:47:37 +0200 |
---|---|---|
committer | GitHub | 2024-10-11 10:47:37 +0200 |
commit | e53dba6a6cdbf05d0577e0fa0d61d3c141a641db (patch) | |
tree | 21faf46a952cbf5a654905a8d9ce8a78af3be234 /README.md | |
parent | 853044729768d3a52d1aba5c9e081737a5088b11 (diff) | |
download | gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.tar.lz gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.tar.zst gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.zip |
Release v1 (#226)
v1.0.0-beta1 gave no problems with my other gomponents libraries, that of others, and some of my large projects, so releasing v1! No more breaking changes! 😁
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/README.md b/README.md index b4c5f85..1e83814 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ They render to HTML 5, and make it easy for you to build reusable components. So you can focus on building your app instead of learning yet another templating language. ```shell -go get maragu.dev/gomponents@v1.0.0-beta1 +go get maragu.dev/gomponents ``` Made with ✨sparkles✨ by [maragu](https://www.maragu.dev/). @@ -38,16 +38,14 @@ Check out [www.gomponents.com](https://www.gomponents.com) for an introduction. - `Map` for mapping data to components and `Group` for grouping components, - and `If`/`Iff` for conditional rendering. - No external dependencies +- Mature and stable, no breaking changes ## Usage ```shell -go get maragu.dev/gomponents@v1.0.0-beta1 +go get maragu.dev/gomponents ``` -The preferred way to use gomponents is with so-called dot-imports (note the dot before the imports), -to give you that smooth, native HTML feel: - ```go package main |