Skip to content

Commit 1d16676

Browse files
committed
3.1.0b1
1 parent 31995f2 commit 1d16676

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [3.1.0] (2022-03-xx)
7+
## [3.1.0b1] (2022-03-25)
88

9+
Project will change name to `Swedish Public Transit Sensor (HASL)` because resrobot supports the whole country however for Stockholm region it is still recomended to use SL-specific apis since they contain alot of extra data.
10+
11+
### Breaking Changes
12+
- Service find_location renamed to `sl_find_location`
13+
- Service find_trip_id renamed to `sl_find_trip_id`
14+
- Service find_trip_pos renamed to `sl_find_trip_pos`
15+
16+
### Added
17+
- API Communication for Resrobot 2.1
18+
- Departure sensor using Resrobot API
19+
- Arrival sensor using Resrobot API
20+
- Route sensor using Resrobot API
21+
- Lookup service for resrobot locations
22+
23+
### Changed
24+
- Updated translation for names ad descriptions and strings where applicable
925

1026
## [3.0.6] (2022-03-25)
1127

@@ -367,7 +383,7 @@ Forked from 2.2.3 but changes from later versions are implemented as needed.
367383
- This is a great day indeed.
368384

369385
[keep-a-changelog]: http://keepachangelog.com/en/1.0.0/
370-
[3.1.0]: https://github.com/hasl-sensor/integration/compare/3.0.6...3.1.0
386+
[3.1.0b1]: https://github.com/hasl-sensor/integration/compare/3.0.6...3.1.0b1
371387
[3.0.6]: https://github.com/hasl-sensor/integration/compare/3.0.5...3.0.6
372388
[3.0.5]: https://github.com/hasl-sensor/integration/compare/3.0.4...3.0.5
373389
[3.0.4]: https://github.com/hasl-sensor/integration/compare/3.0.3...3.0.4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![maintained](https://img.shields.io/maintenance/yes/2022.svg)
22
[![hacs_badge](https://img.shields.io/badge/hacs-default-green.svg)](https://github.com/custom-components/hacs)
33
[![ha_version](https://img.shields.io/badge/home%20assistant-2021.12%2B-green.svg)](https://www.home-assistant.io)
4-
![version](https://img.shields.io/badge/version-3.1.0-green.svg)
4+
![version](https://img.shields.io/badge/version-3.1.0b1-green.svg)
55
[![maintainer](https://img.shields.io/badge/maintainer-dsorlov-blue.svg)](https://github.com/DSorlov)
66
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
77

custom_components/hasl3/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
STATE_OFF
66
)
77

8-
HASL_VERSION = "3.1.0"
8+
HASL_VERSION = "3.1.0b1"
99
SCHEMA_VERSION = "3"
1010
DOMAIN = "hasl3"
1111
NAME = "Swedish Public Transport Sensor (HASL)"

custom_components/hasl3/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": [],
1010
"after_dependencies": [],
1111
"config_flow": true,
12-
"version": "3.1.0",
12+
"version": "3.1.0b1",
1313
"iot_class": "cloud_polling",
1414
"quality_scale": "silver",
1515
"requirements": [

custom_components/hasl3/rrapi/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.1.0'
1+
__version__ = '3.1.0b1'
22

33
BASE_URL = 'https://api.resrobot.se/v2.1/'
44
STOP_LOOKUP_URL = '{}location.name?input={}&format=json&accessId={}'

custom_components/hasl3/slapi/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.1.0'
1+
__version__ = '3.1.0b1'
22

33
FORDONSPOSITION_URL = 'https://api.sl.se/fordonspositioner/GetData?' \
44
'type={}&pp=false&cacheControl={}'

0 commit comments

Comments
 (0)