From 2bc618af4f11986aa887fb31777bd0a05659c618 Mon Sep 17 00:00:00 2001 From: mingmingrr Date: Wed, 30 Oct 2024 02:03:04 -0400 Subject: [PATCH 1/3] events.on_post_rc -> events.on_post_init --- xontrib/direnv.xsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xontrib/direnv.xsh b/xontrib/direnv.xsh index 2fc9ec97..83e2ccf2 100644 --- a/xontrib/direnv.xsh +++ b/xontrib/direnv.xsh @@ -11,8 +11,8 @@ def __direnv(): else: __xonsh__.env[k] = v -@events.on_post_rc -def __direnv_post_rc(**kwargs) -> None: +@events.on_post_init +def __direnv_post_init(**kwargs) -> None: __direnv() @events.on_chdir From 1d22bf34f40d929dc9acf586f70b6b239a4fc771 Mon Sep 17 00:00:00 2001 From: mingmingrr Date: Wed, 30 Oct 2024 13:29:52 -0400 Subject: [PATCH 2/3] Update README.rst --- README.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.rst b/README.rst index a87275c8..2ed389c5 100644 --- a/README.rst +++ b/README.rst @@ -15,6 +15,10 @@ This works with python 3.7.0, xonsh 0.8.8 and direnv 2.17.0. change log ========== +1.6.5 +----- +* PR https://github.com/74th/xonsh-direnv/pull/24 + 1.6.4 ----- * PR https://github.com/74th/xonsh-direnv/pull/21 @@ -68,3 +72,4 @@ Contributors * Andy Kipp (@anki-code, contributor) * Alexander Sosedkin (@t184256, contributor) * Mark Bestley (@bestlem, contributor) +* mingmingrr (@mingmingrr, contributor) From e199b19905a29297ca718da8c8651eefe6149175 Mon Sep 17 00:00:00 2001 From: mingmingrr Date: Wed, 30 Oct 2024 13:30:12 -0400 Subject: [PATCH 3/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4badf9a7..08a23069 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="xonsh-direnv", - version="1.6.4", + version="1.6.5", license="MIT", url="https://github.com/74th/xonsh-direnv", description="direnv support for the xonsh shell",