Skip to content

Commit

Permalink
Release 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tavianator committed Mar 6, 2021
1 parent 7816b2b commit 2c1c83b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
############################################################################

ifeq ($(wildcard .git),)
VERSION := 2.1
VERSION := 2.2
else
VERSION := $(shell git describe --always)
endif
Expand Down
20 changes: 20 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
2.*
===

2.2
---

**March 6, 2020**

- Fixed `-hidden` on hidden start paths

- Added a Bash completion script.
Thanks @bmundt6!

- Fixed rounding in `-used`.
Corresponding fixes were made to GNU find in version 4.8.0.

- Optimized the open directory representation.
On Linux, much libc overhead is bypassed by issuing syscalls directly.
On all platforms, a few fewer syscalls and open file descriptors will be used.

- Implemented `-flags` from BSD find


2.1
---

Expand Down
4 changes: 2 additions & 2 deletions bfs.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
* bfs *
* Copyright (C) 2015-2020 Tavian Barnes <[email protected]> *
* Copyright (C) 2015-2021 Tavian Barnes <[email protected]> *
* *
* Permission to use, copy, modify, and/or distribute this software for any *
* purpose with or without fee is hereby granted. *
Expand All @@ -22,7 +22,7 @@
#define BFS_H

#ifndef BFS_VERSION
# define BFS_VERSION "2.1"
# define BFS_VERSION "2.2"
#endif

#ifndef BFS_HOMEPAGE
Expand Down

0 comments on commit 2c1c83b

Please sign in to comment.