Skip to content

Commit

Permalink
build: bumping up to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flxxyz committed May 18, 2023
1 parent 3e16cb4 commit 8504baf
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bump/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.11
0.1.0
2 changes: 1 addition & 1 deletion deployment/maintenance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
- name: ghcr
containers:
- name: relay
image: ghcr.io/guakamoli/denostr:v0.0.11-maintenance
image: ghcr.io/guakamoli/denostr:v0.1.0-maintenance
imagePullPolicy: Always
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion deployment/static-mirroring.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
- name: ghcr
containers:
- name: relay
image: ghcr.io/guakamoli/denostr:v0.0.11-static-mirroring
image: ghcr.io/guakamoli/denostr:v0.1.0-static-mirroring
imagePullPolicy: Always
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion deployment/worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
- name: ghcr
containers:
- name: relay
image: ghcr.io/guakamoli/denostr:v0.0.11-worker
image: ghcr.io/guakamoli/denostr:v0.1.0-worker
imagePullPolicy: Always
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
denostr:
image: ghcr.io/guakamoli/denostr:v0.0.11-worker
image: ghcr.io/guakamoli/denostr:v0.1.0-worker
container_name: denostr
environment:
RELAY_PORT: 8008
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "denostr",
"version": "0.0.11",
"version": "0.1.0",
"description": "💪🏻 Deno-based, cloud-native Nostr relay forked from nostream. Sponsored by ByteTrade and Revo.",
"supportedNips": [
1,
Expand Down
2 changes: 1 addition & 1 deletion src/@types/repositories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PassThrough } from 'stream'
import mongoose from 'mongoose'

import { DatabaseClient, EventId, Pubkey } from './base.ts'
import { Event, DBEvent } from './event.ts'
import { DBEvent, Event } from './event.ts'
import { Invoice } from './invoice.ts'
import { SubscriptionFilter } from './subscription.ts'
import { User } from './user.ts'
Expand Down
2 changes: 1 addition & 1 deletion src/database/DatabaseWatcher.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import EventEmitter from 'events'
import type { ChangeStreamDeleteDocument, ChangeStreamInsertDocument, ChangeStreamUpdateDocument, Db, WithId, ObjectId, ChangeStream } from 'mongodb'
import type { ChangeStream, ChangeStreamDeleteDocument, ChangeStreamInsertDocument, ChangeStreamUpdateDocument, Db, ObjectId, WithId } from 'mongodb'

import { convertChangeStreamPayload, IRecord } from './convertChangeStreamPayload.ts'
import watchCollections from './watchCollections.ts'
Expand Down
2 changes: 1 addition & 1 deletion test/integration/features/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const startTest = async (pathUrl: string, registerEvent: Function) => {
console.error(err, 'Fatal error occurred when watching database')
Deno.exit(1)
})

initWatchers(watcher, api.broadcastLocal.bind(api))

Sinon.stub(SettingsStatic, 'watchSettings')
Expand Down

0 comments on commit 8504baf

Please sign in to comment.