Skip to content

Commit e783f9d

Browse files
authored
Update version to 0.8 in README (#3417)
* Changed version from 0.7 to 0.8 * Fixed version
1 parent a892ebc commit e783f9d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,22 +125,22 @@ SQLx is compatible with the [`async-std`], [`tokio`], and [`actix`] runtimes; an
125125
# PICK ONE OF THE FOLLOWING:
126126

127127
# tokio (no TLS)
128-
sqlx = { version = "0.7", features = [ "runtime-tokio" ] }
128+
sqlx = { version = "0.8", features = [ "runtime-tokio" ] }
129129
# tokio + native-tls
130-
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-native-tls" ] }
130+
sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-native-tls" ] }
131131
# tokio + rustls with ring
132-
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls-ring" ] }
132+
sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-rustls-ring" ] }
133133
# tokio + rustls with aws-lc-rs
134-
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls-aws-lc-rs" ] }
134+
sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-rustls-aws-lc-rs" ] }
135135

136136
# async-std (no TLS)
137-
sqlx = { version = "0.7", features = [ "runtime-async-std" ] }
137+
sqlx = { version = "0.8", features = [ "runtime-async-std" ] }
138138
# async-std + native-tls
139-
sqlx = { version = "0.7", features = [ "runtime-async-std", "tls-native-tls" ] }
139+
sqlx = { version = "0.8", features = [ "runtime-async-std", "tls-native-tls" ] }
140140
# async-std + rustls with ring
141-
sqlx = { version = "0.7", features = [ "runtime-async-std", "tls-rustls-ring" ] }
141+
sqlx = { version = "0.8", features = [ "runtime-async-std", "tls-rustls-ring" ] }
142142
# async-std + rustls with aws-lc-rs
143-
sqlx = { version = "0.7", features = [ "runtime-async-std", "tls-rustls-aws-lc-rs" ] }
143+
sqlx = { version = "0.8", features = [ "runtime-async-std", "tls-rustls-aws-lc-rs" ] }
144144
```
145145

146146
#### Cargo Feature Flags

0 commit comments

Comments
 (0)