···2233Documenting changes between versions beginning from v0.3.0
4455+## v0.10.1
66+77+* Added new command to display the currently loaded environment
88+59## v0.10.0
610711* SQLite DB support
···3838 clear Clear all keys/values from the store
3939 purge Purges the .safirstore directory, removing it and its contents
4040 use Use / create an environment to store key / value pairs
4141+ env Display the current loaded environment
4142 help Print this message or the help of the given subcommand(s)
42434344Options:
···137138138139safir mode database # Switch to using an SQLite database for storage
139140```
141141+142142+Displaying the currently loaded environment:
143143+144144+```bash
145145+safir env # Will display the currently loaded environment
146146+```
+3
src/cli.rs
···7070 #[arg(default_value_t = String::from("default"))]
7171 environment: String,
7272 },
7373+7474+ /// Display the current loaded environment
7575+ Env,
7376}