Skip to content

Commit

Permalink
Release v1.2.0 and fix variable name on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Tremeschin committed Aug 19, 2024
1 parent a9bb4a9 commit 4daace3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion turbopipe/_turbopipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class TurboPipe {

#ifdef _WIN32
// Windows doesn't like chunked writes ??
write(work.file, (char*) work.map, work.size);
write(work.file, (char*) work.data, work.size);
#else
// Optimization: Write in chunks of 4096 (RAM page size)
size_t tell = 0;
Expand Down
2 changes: 1 addition & 1 deletion turbopipe/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
__version__ = "1.1.0"
__version__ = "1.2.0"

if __name__ == "__main__":
print(__version__)

0 comments on commit 4daace3

Please sign in to comment.