Skip to content

Commit 50a2cba

Browse files
authored
chore(shard.lock): bump deps vesion (#56)
* chore(shard.lock): bump deps vesion * chore(linter): ran crystal tool format to make linter happy
1 parent e80c885 commit 50a2cba

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

shard.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ shards:
1919

2020
backtracer:
2121
git: https://github.com/sija/backtracer.cr.git
22-
version: 1.2.2
22+
version: 1.2.4
2323

2424
bindata:
2525
git: https://github.com/spider-gazelle/bindata.git
@@ -75,7 +75,7 @@ shards:
7575

7676
flux:
7777
git: https://github.com/place-labs/flux.git
78-
version: 3.0.1
78+
version: 3.0.2
7979

8080
future:
8181
git: https://github.com/crystal-community/future.cr.git
@@ -147,7 +147,7 @@ shards:
147147

148148
pars:
149149
git: https://github.com/spider-gazelle/pars.git
150-
version: 1.1.0
150+
version: 1.2.0
151151

152152
pegmatite:
153153
git: https://github.com/jemc/crystal-pegmatite.git

spec/spec_helper.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module PlaceOS::Source
6161
area_id = "2042",
6262
level_id = "nek",
6363
building_id = "cards",
64-
org_id = "org-donor"
64+
org_id = "org-donor",
6565
)
6666
state = Mappings::State.new
6767
state.system_modules[module_id] = [{name: module_name, control_system_id: control_system_id, index: index}]

src/source/manager.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module PlaceOS::Source
2121

2222
def initialize(
2323
@publisher_managers : Array(PublisherManager) = [] of PublisherManager,
24-
@mappings : Mappings = Mappings.new
24+
@mappings : Mappings = Mappings.new,
2525
)
2626
@control_system_router = Router::ControlSystem.new(mappings, publisher_managers)
2727
@driver_router = Router::Driver.new(mappings, publisher_managers)

src/source/publishing/influx_manager.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module PlaceOS::Source
2020
@influx_host : String = INFLUX_HOST || abort("INFLUX_HOST unset"),
2121
@influx_api_key : String = INFLUX_API_KEY || abort("INFLUX_API_KEY unset"),
2222
@influx_org : String = INFLUX_ORG,
23-
@influx_bucket : String = INFLUX_BUCKET
23+
@influx_bucket : String = INFLUX_BUCKET,
2424
)
2525
client = Flux::Client.new(influx_host, influx_api_key, influx_org)
2626
@publisher = InfluxPublisher.new(client, influx_bucket)

0 commit comments

Comments
 (0)