Skip to content

Commit da67a49

Browse files
committed
Release v1.0.0 - STABLE_RELEASE
1 parent ba2297d commit da67a49

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [1.0.0] 2022-10-24
4+
### STABLE_RELEASE
5+
6+
- Flag the stable version
7+
- DOCS Update
8+
39
## [0.0.3] 2022-10-24
410
### Improvements
511

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ $ python manage.py migrate
7676
7777
```python
7878
from django.contrib import admin
79-
from django.urls import path, include # <-- NEW: 'include` directive added
79+
from django.urls import path, include # <-- NEW: 'include` directive added
8080

8181
urlpatterns = [
8282
path("admin/", admin.site.urls),
83-
path("api/", include("api.urls")), # <-- NEW: API routing rules
83+
path('', include('django_dyn_api.urls')), # <-- NEW: API routing rules
8484
]
8585
```
8686

@@ -94,7 +94,8 @@ from rest_framework.authtoken.views import obtain_auth_token # <-- NEW
9494

9595
urlpatterns = [
9696
path("admin/", admin.site.urls),
97-
path("api/", include("api.urls")), # <-- Added in the previous step
97+
98+
path('', include('django_dyn_api.urls')), # <-- Added in the previous step
9899
path('login/jwt/', view=obtain_auth_token), # <-- NEW
99100
]
100101
```

0 commit comments

Comments
 (0)