Skip to content

Commit

Permalink
Merge tag '3.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ndwarshuis committed Apr 4, 2021
2 parents 2487d89 + 40c8870 commit 71b6e01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.0.2

- fix typos in `org-sql-user-push`/`org-sql-user-pull`

## 3.0.1

- fix bug timestamp bug when using org-mode 9.4
Expand Down
8 changes: 4 additions & 4 deletions org-sql.el
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
;;; org-sql.el --- Org-Mode SQL converter -*- lexical-binding: t; -*-

;; Copyright (C) 2020 Nathan Dwarshuis
;; Copyright (C) 2021 Nathan Dwarshuis

;; Author: Nathan Dwarshuis <natedwarshuis@gmail.com>
;; Keywords: org-mode, data
;; Homepage: https://github.com/ndwarshuis/org-sql
;; Package-Requires: ((emacs "27.1") (s "1.12") (f "0.20.0") (dash "2.17") (org-ml "5.6.1"))
;; Version: 3.0.1
;; Version: 3.0.2

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -3735,14 +3735,14 @@ Calls `org-sql-init-db'."
(message "Initializing the Org SQL database")
(org-sql--on-user-success (org-sql-init-db) "org-sql-init-db"))

(defun org-sql-user-push ()
(defun org-sql-user-pull ()
"Pull current org-file state from the database.
Calls `org-sql-pull-from-db'."
(interactive)
(message "Pulling data from Org SQL database")
(org-sql-pull-from-db))

(defun org-sql-user-pull ()
(defun org-sql-user-push ()
"Push current org-file state to the database.
Calls `org-sql-push-to-db'."
(interactive)
Expand Down

0 comments on commit 71b6e01

Please sign in to comment.