# 1.2.0 (2025-03-22)

- Sublime REST Client will also read `.env` file and `*.env` files in the project directory.
The contents will be added as variables which can be substituted using `{{$dotenv NAME}}`:

Contents of `.env`

```
TOKEN=ABC123
```

Request file:

```
GET https://httpbin.org/get
Authorization: Bearer {{$dotenv TOKEN}}
```
