From 0c95aea3ad337c03b364853fe40075503c8af982 Mon Sep 17 00:00:00 2001 From: Ron Chaplin Date: Thu, 18 Jul 2024 10:18:41 -0500 Subject: [PATCH] Release 1.0.0 --- README.md | 7 ++++++- composer.json | 2 +- docs/CHANGELOG.md | 3 +++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 814a074d..6099f28d 100755 --- a/README.md +++ b/README.md @@ -5,7 +5,12 @@ [![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/t73biz/lw-bits/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/t73biz/lw-bits/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain) [![Total Downloads](https://img.shields.io/packagist/dt/t73biz/lw-bits.svg?style=flat-square)](https://packagist.org/packages/t73biz/lw-bits) -Live Wire Bits and Bobs is a package to help you with your Livewire projects. +LW Bits is a package to help you with your Livewire projects. The HTML 5 elements as defined by [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element) are available as Livewire components. + +The package is designed to be as flexible as possible. You can use the components as they are, or you can extend them to add your own functionality. + +The attributes that are available for each component are the same as the attributes that are available for the HTML 5 element. Read more of the in-depth documentation on each component and/or Attribute Trait for more information. + ## Documentation Please see [docs/index.md](docs/index.md) for more information. diff --git a/composer.json b/composer.json index 0bfe3196..5221b7dc 100755 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "laravel", "lw-bits" ], - "version": "0.4.1", + "version": "1.0.0", "homepage": "https://github.com/t73biz/lw-bits", "license": "MIT", "authors": [ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 258bca82..522954e7 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to `lw-bits` will be documented in this file. +## 1.0.0 - 2024-07-14 +Adding in specific attributes for all components. +Modified attribute traits, usage, and testing. ## 0.4.1 - 2024-07-14 Fixing Global Attributes