Skip to content

Commit fe62245

Browse files
committed
initial implementation
1 parent 1831e89 commit fe62245

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
All notable changes to this project will be documented in this file. This change log follows the conventions
44
of [keepachangelog.com](http://keepachangelog.com/).
55

6-
## Unreleased
6+
## 2.3.5 - 2026-01-02
77

8-
## 2.2.4 - 2025-02-01
8+
### Added
9+
10+
- Implement migrations component.
11+
12+
## 2.2.5 - 2025-02-01
913

1014
### Changed
1115

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject net.clojars.macielti/postgresql-component "2.2.5"
1+
(defproject net.clojars.macielti/postgresql-component "2.3.5"
22

33
:description "PostgreSQL Component"
44

src/postgresql_component/migrations.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns postgresql-component.migrations
2-
(:require [pg.migration.core :as migrations]
3-
[clojure.tools.logging :as log]
4-
[integrant.core :as ig]))
2+
(:require [clojure.tools.logging :as log]
3+
[integrant.core :as ig]
4+
[pg.migration.core :as migrations]))
55

66
(defmethod ig/init-key ::postgresql-migrations
77
[_ {:keys [components]}]

0 commit comments

Comments
 (0)