Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacai2050 committed Nov 26, 2022
1 parent 4b7fead commit eec61e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .dir-locals.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(eval . (progn
(eglot-ensure)
(add-hook 'before-save-hook 'eglot-format nil t)))))
(prog-mode . ((omg-pull-target-repo . "jiacai2050/oh-my-github")
(omg-pull-target-branch . "master")
(omg-pull-username . "jiacai2050")
(omg-pull-draft . "false"))))
(nil . ((omg-pull-target-repo . "jiacai2050/oh-my-github")
(omg-pull-target-branch . "master")
(omg-pull-username . "jiacai2050")
(omg-pull-draft . "false"))))
3 changes: 2 additions & 1 deletion CHANGELOG.org
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
#+DATE: 2022-04-23T10:20:54+0800
#+AUTHOR: Jiacai Liu
#+LANGUAGE: cn
#+EMAIL: jiacai2050+org@gmail.com
#+EMAIL: dev@liujiacai.net
#+OPTIONS: toc:nil num:nil
#+STARTUP: content

* master(unrelease)

* v1.0.0 (2022-11-26)
** BREAKING CHANGES
- All funtions/customs are prefix with =omg= instead of =oh-my-github= [[https://github.com/jiacai2050/oh-my-github/pull/47][#47]]
** New Features
Expand Down
4 changes: 2 additions & 2 deletions core/omg.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
#include <string.h>

const char *HEADER_ACCEPT = "Accept: application/vnd.github.v3.star+json";
const char *HEADER_UA = "User-Agent: omg-client/0.1.0";
const char *HEADER_UA = "User-Agent: omg-client/1.0.0";
const char *API_ROOT = "https://api.github.com";
const char *GET_METHOD = "GET";
const char *DELETE_METHOD = "DELETE";
const char *POST_METHOD = "POST";
const char *PATCH_METHOD = "PATCH";
// utils
// when in test, fetch less data
#ifdef OMG_TEST
const size_t PER_PAGE = 10;
#else
Expand Down
2 changes: 1 addition & 1 deletion emacs/omg.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2022 Jiacai Liu

;; Author: Jiacai Liu <jiacai2050@gmail.com>
;; Version: 0.6.0
;; Version: 1.0.0
;; Package-Requires: ((emacs "28.1"))
;; Keywords: GitHub
;; URL: https://github.com/jiacai2050/oh-my-github
Expand Down

0 comments on commit eec61e4

Please sign in to comment.