Skip to content

Commit db867b8

Browse files
committed
Release 1.0.0
1 parent e561b54 commit db867b8

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
FROM python:3.12-alpine
22

3-
RUN pip install --no-cache-dir markopolis==0.3.4
3+
# Install ripgrep
4+
RUN apk add --no-cache ripgrep
5+
6+
# Install markopolis
7+
RUN pip install --no-cache-dir markopolis==1.0.0
48

59
WORKDIR /app
610

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ version: '3.8'
5252
5353
services:
5454
markopolis:
55-
image: ghcr.io/rishikanthc/markopolis:0.3.4
55+
image: ghcr.io/rishikanthc/markopolis:1.0.0
5656
ports:
5757
- "8080:8080"
5858
environment:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "markopolis"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
description = "Self-hostable Obsidian Publish"
55
authors = ["Rishikanth Chandrasekaran <r3chandr@ucsd.edu>"]
66
readme = "README.md"
@@ -60,4 +60,4 @@ diagnosticMode = "openFilesOnly"
6060
consume = "markopolis.scripts.consume:consume"
6161
markopolis = "markopolis.app:main"
6262
mtest = "markopolis.scripts.testsh:main"
63-
md_sync = "markopolis.scripts.md_sync:md_sync"
63+
mdsync = "markopolis.scripts.md_sync:mdsync"

0 commit comments

Comments
 (0)