File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
34
* [[ #2057 ]] : Make begin,commit,rollback cancel-safe in sqlite [[ @madadam ]]
35
35
* [[ #2058 ]] : fix typo in documentation [[ @lovasoa ]]
36
36
* [[ #2067 ]] : fix(docs): close code block in query_builder.rs [[ @abonander ]]
37
- * [[ #2069 ]] : Fix ` prepare ` race condition in workspaces [[ @cycraig ]]
37
+ * [[ #2069 ]] : Fix ` prepare ` race condition in workspaces [[ @cycraig ]] \
38
+ * NOTE: this changes the directory structure under ` target/ ` that ` cargo sqlx prepare ` depends on.
39
+ If you use offline mode in your workflow, please rerun ` cargo install sqlx-cli ` to upgrade.
38
40
* [[ #2072 ]] : SqliteConnectOptions typo [[ @fasterthanlime ]]
39
41
* [[ #2074 ]] : fix: mssql uses unsigned for tinyint instead of signed [[ @he4d ]]
40
42
* [[ #2081 ]] : close unnamed portal after each executed extended query [[ @DXist ]]
Original file line number Diff line number Diff line change @@ -733,7 +733,7 @@ macro_rules! query_file_scalar_unchecked (
733
733
///
734
734
/// This is because our ability to tell the compiler to watch external files for changes
735
735
/// from a proc-macro is very limited. The compiler by default only re-runs proc macros when
736
- /// one ore more source files have changed, because normally it shouldn't have to otherwise. SQLx is
736
+ /// one or more source files have changed, because normally it shouldn't have to otherwise. SQLx is
737
737
/// just weird in that external factors can change the output of proc macros, much to the chagrin of
738
738
/// the compiler team and IDE plugin authors.
739
739
///
You can’t perform that action at this time.
0 commit comments