Skip to content

Commit

Permalink
chore(deno): upgrade to v 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
reinamora137 committed Jan 10, 2025
1 parent bbf4b3b commit cf3d196
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .cursorrules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Adding version control information for better AI context
version_info:
deno: "2.1.4"
deno: "2.1.5"
fresh: "1.7.3"
project: "BTCStampsExplorer"

Expand Down Expand Up @@ -33,7 +33,7 @@ emoji_handling:

# Expanding code style with project-specific patterns
code_style:
framework: "Deno Fresh 2.1.4"
framework: "Deno Fresh 2.1.5"
principles:
- write_concise_typescript
- use_functional_programming
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.1.4
deno-version: v2.1.5

- name: Cache Deno dependencies
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:alpine-2.1.4
FROM denoland/deno:alpine-2.1.5

# Set environment variables
ENV HOME=/app \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ with the [Bitcoin Stamps Indexer](https://github.com/stampchain-io/btc_stamps).
## Prerequisites

1. **Install Deno**
> ⚠️ **Required Version**: 2.1.4
> ⚠️ **Required Version**: 2.1.5
```sh
curl -fsSL https://deno.land/install.sh | sh
```
Expand Down Expand Up @@ -82,13 +82,13 @@ deno task validate:schema
Docker deployment is also supported:

```sh
docker build -t btc-stamps-explorer:2.1.4 .
docker run -p 8000:8000 btc-stamps-explorer:2.1.4
docker build -t btc-stamps-explorer:2.1.5 .
docker run -p 8000:8000 btc-stamps-explorer:2.1.5
```

The container uses:

- Deno 2.1.4 Alpine base image
- Deno 2.1.5 Alpine base image
- Production environment
- Port 8000
- Required permissions for network, file system, and environment variables
Expand Down
2 changes: 1 addition & 1 deletion utils/check_deno_version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const requiredVersion = "2.1.4";
const requiredVersion = "2.1.5";
const currentVersion = Deno.version.deno;

if (currentVersion !== requiredVersion) {
Expand Down

0 comments on commit cf3d196

Please sign in to comment.