Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Nov 24, 2023
1 parent bbfcad9 commit 447cc0c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Flex Table

[![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration)
[![Version](https://img.shields.io/badge/version-0.7.4-green.svg?style=plastic)](#)
[![stable-release-0.7.4](https://img.shields.io/badge/stable-release_0.7.4-green.svg?style=plastic)](#)
[![Version](https://img.shields.io/badge/version-0.7.5-green.svg?style=plastic)](#)
[![stable-release-0.7.5](https://img.shields.io/badge/stable-release_0.7.5-green.svg?style=plastic)](#)
<a href="https://www.buymeacoffee.com/daringer" target="_blank"> <img src="https://cdn.buymeacoffee.com/buttons/lato-green.png" alt="Buy Me A Coffee Or Beer" height=18></a>

## Installation using HACS ([Home Assistant Community Store](https://hacs.xyz))
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.4
0.7.5
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.7.5

- properly set version inside sources
- fixed #115

## 0.7.4

- show name and version in HA console
Expand Down
2 changes: 1 addition & 1 deletion flex-table-card.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

// VERSION info
var VERSION = "0.7.3";
var VERSION = "0.7.5";

// typical [[1,2,3], [6,7,8]] to [[1, 6], [2, 7], [3, 8]] converter
var transpose = m => m[0].map((x, i) => m.map(x => x[i]));
Expand Down

0 comments on commit 447cc0c

Please sign in to comment.