Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v1.1.1 #9

Merged
merged 39 commits into from
Feb 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
acf1118
Merge tag 'vfix-readme' into dev
nfurfaro Jan 24, 2024
724cc5b
refactor: simplify handling of output status codes
nfurfaro Jan 25, 2024
43a38f9
test: add if statement to test file
nfurfaro Jan 25, 2024
d2b575f
fix: better handling of excluded dirs & reporting
nfurfaro Jan 25, 2024
519a000
chore: cleanup
nfurfaro Jan 25, 2024
b15ae64
Merge branch 'feature/fix-processor-exit-codes' into dev
nfurfaro Jan 25, 2024
084e344
docs: update readme
nfurfaro Jan 26, 2024
c666973
fix: update handling of excluded dirs
nfurfaro Jan 26, 2024
a04ebb2
docs: update installation instructions
nfurfaro Jan 29, 2024
afef0e2
Merge remote-tracking branch 'refs/remotes/origin/dev'
nfurfaro Jan 29, 2024
92d89eb
wip: handle missing manifest file
nfurfaro Jan 29, 2024
28cce0d
fix: handle missing manifest file
nfurfaro Jan 29, 2024
4c1a005
fix: print "remove" under Mutation column
nfurfaro Jan 29, 2024
b3dd18e
fix: minor improvements
nfurfaro Jan 31, 2024
abc223e
chore: lceanup
nfurfaro Feb 1, 2024
6a147f0
fix: update regex to correctly mutate ! operator
nfurfaro Feb 2, 2024
ff06e95
fixup
nfurfaro Feb 2, 2024
61cb7e3
Merge branch 'feature/minor-bugfixes' into dev
nfurfaro Feb 2, 2024
cff9ca5
wip
nfurfaro Feb 4, 2024
d99a8db
chore: bump noir version to 0.23.0
nfurfaro Feb 12, 2024
f19e2f3
chore: cleanup
nfurfaro Feb 12, 2024
fdd3632
fix: use mutex to write to lib.nr
nfurfaro Feb 12, 2024
096f4a3
fixup
nfurfaro Feb 12, 2024
8b5bf21
temp logging
nfurfaro Feb 12, 2024
4fa0759
wip: try to fix shared access to stderr
nfurfaro Feb 13, 2024
6fc699e
cleanup
nfurfaro Feb 13, 2024
ff7de21
wip
nfurfaro Feb 14, 2024
5fc21d7
fixup
nfurfaro Feb 14, 2024
cd4361d
fix: solve race condition!
nfurfaro Feb 14, 2024
403cc2a
cleanup
nfurfaro Feb 14, 2024
37abe63
Merge branch 'feature/handle-build-output' into dev
nfurfaro Feb 14, 2024
318f153
chore: cleanup, fmt, clippy
nfurfaro Feb 14, 2024
9cb71eb
cleanup
nfurfaro Feb 14, 2024
b246532
trial: test out local functions
nfurfaro Feb 14, 2024
05c7601
chore: bump version for release
nfurfaro Feb 14, 2024
1cc0608
chore: cleanup
nfurfaro Feb 14, 2024
d0d40a7
fix: handle interrupt sig by deleting temp files
nfurfaro Feb 14, 2024
7662593
chore: cleanup unused deps
nfurfaro Feb 14, 2024
30420dd
Merge branch 'master' into release/v1.1.1
nfurfaro Feb 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
nfurfaro committed Feb 14, 2024
commit 9cb71eb9c61e82176c0f9e0b8500bfa29e039aba
1 change: 0 additions & 1 deletion src/file_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ pub fn mutate_temp_file(temp_file: &std::path::PathBuf, m: &mut Mutant) {
m.span_start() as usize,
token_as_bytes(&m.token()).unwrap(),
token_as_bytes(&m.mutation()).unwrap(),
// &m.bytes(),
);
contents = String::from_utf8_lossy(original_bytes.as_slice()).into_owned();

Expand Down