Skip to content

Commit b3c1ccf

Browse files
committed
chore: Release Beta-4.3
1 parent 79a337e commit b3c1ccf

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

atmo/release/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package release
22

3-
// AtmoDotVersion represents the dot version for atmo.
4-
var AtmoDotVersion = "0.4.2"
3+
// AtmoDotVersion represents the dot version for atmo
4+
var AtmoDotVersion = "0.4.3"

changelogs/v0.4.3.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Atmo Beta-4.3 includes concurrency improvements and an upgrade to Reactr Beta-15.

docs/concepts/the-directive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Here's an example Directive:
77
```yaml
88
identifier: com.suborbital.guide
99
appVersion: v0.0.1
10-
atmoVersion: v0.4.2
10+
atmoVersion: v0.4.3
1111

1212
handlers:
1313
- type: request

docs/usage/creating-handlers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Each handler tells Atmo how to handle a **resource.** A resource is an input tha
1313
```yaml
1414
identifier: com.suborbital.test
1515
appVersion: v0.0.1
16-
atmoVersion: v0.4.2
16+
atmoVersion: v0.4.3
1717

1818
handlers:
1919
- type: request

example-project/Directive.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
identifier: com.suborbital.test
22
appVersion: v0.0.1
3-
atmoVersion: v0.4.2
3+
atmoVersion: v0.4.3
44

55
# uncomment to try out connections!
66
connections:
@@ -33,9 +33,9 @@ handlers:
3333
steps:
3434
- fn: log-it
3535
as: logme
36-
36+
3737
- fn: modify-url
38-
38+
3939
- fn: fetch-test
4040
with:
4141
url: modify-url
@@ -45,19 +45,19 @@ handlers:
4545
method: POST
4646
steps:
4747
- fn: cache-set
48-
48+
4949
- type: request
5050
resource: /get/:key
5151
method: GET
5252
steps:
5353
- fn: cache-get
54-
54+
5555
- type: request
5656
resource: /file/*file
5757
method: GET
5858
steps:
5959
- fn: get-file
60-
60+
6161
- type: request
6262
resource: /github
6363
method: GET
@@ -69,12 +69,12 @@ handlers:
6969
method: GET
7070
steps:
7171
- fn: rs-dbtest
72-
72+
7373
- type: stream
7474
resource: /stream
7575
steps:
7676
- fn: helloworld-rs
77-
77+
7878
# uncomment to try out NATS streaming!
7979
# - type: stream
8080
# source: nats
@@ -90,11 +90,10 @@ handlers:
9090
# steps:
9191
# - fn: helloworld-rs
9292
# respondTo: grav.reply
93-
9493
# uncomment to try out scheduled jobs!
9594
# schedules:
9695
# - name: run-every-30
9796
# every:
9897
# seconds: 30
9998
# steps:
100-
# - fn: log-it
99+
# - fn: log-it

0 commit comments

Comments
 (0)