File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
5656
5757``` toml 
5858[dependencies ]
59- tokio  = { version  = " 1.22 .0" features  = [" full" 
59+ tokio  = { version  = " 1.23 .0" features  = [" full" 
6060``` 
6161Then, on your main.rs:
6262
Original file line number Diff line number Diff line change 1+ # 1.23.0 (December 5, 2022)  
2+ 
3+ ### Fixed  
4+ 
5+  -  net: fix Windows named pipe connect ([ #5208  ] )
6+  -  io: support vectored writes for ` ChildStdin `  ([ #5216  ] )
7+  -  io: fix ` async fn ready() `  false positive for OS-specific events ([ #5231  ] )
8+ 
9+  ### Changed  
10+  -  runtime: ` yield_now `  defers task until after driver poll ([ #5223  ] )
11+  -  runtime: reduce amount of codegen needed per spawned task ([ #5213  ] )
12+  -  windows: replace ` winapi `  dependency with ` windows-sys `  ([ #5204  ] )
13+ 
14+  [ #5208 ] : https://github.com/tokio-rs/tokio/pull/5208 
15+  [ #5216 ] : https://github.com/tokio-rs/tokio/pull/5216 
16+  [ #5213 ] : https://github.com/tokio-rs/tokio/pull/5213 
17+  [ #5204 ] : https://github.com/tokio-rs/tokio/pull/5204 
18+  [ #5223 ] : https://github.com/tokio-rs/tokio/pull/5223 
19+  [ #5231 ] : https://github.com/tokio-rs/tokio/pull/5231 
20+ 
121# 1.22.0 (November 17, 2022)  
222
323### Added  
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name = "tokio"
66#    - README.md
77#  - Update CHANGELOG.md.
88#  - Create "v1.x.y" git tag.
9- version  = " 1.22 .0" 
9+ version  = " 1.23 .0" 
1010edition  = " 2018" 
1111rust-version  = " 1.49" 
1212authors  = [" Tokio Contributors <team@tokio.rs>" 
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
5656
5757``` toml 
5858[dependencies ]
59- tokio  = { version  = " 1.22 .0" features  = [" full" 
59+ tokio  = { version  = " 1.23 .0" features  = [" full" 
6060``` 
6161Then, on your main.rs:
6262
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments